diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml deleted file mode 100644 index 8c1c59a8..00000000 --- a/.github/workflows/pull_request.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: pull_request -name: Pull request -jobs: - setShortcutLinkInPR: - if: github.repository == 'launchdarkly/integration-framework-private' - name: Set Shortcut Link in PR - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set Shortcut Link in PR - uses: launchdarkly-labs/ld-gh-actions-shortcut/set-link@main - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - AUTOLINK_PREFIX: 'SC-' - CREATE_STORY_URL: https://app.shortcut.com/launchdarkly/stories/new?template_id=5f3fbdce-dfa0-446b-91c5-0cf6e01f5045 diff --git a/__tests__/validateIntegrationManifests.js b/__tests__/validateIntegrationManifests.js index bba4033c..b217fe8b 100644 --- a/__tests__/validateIntegrationManifests.js +++ b/__tests__/validateIntegrationManifests.js @@ -16,8 +16,14 @@ const OAUTH_INTEGRATIONS = [ 'sentry', 'servicenow', 'servicenow-normal', + 'servicenow-app', + 'custom-approvals-oauth', ]; // add oauth integrations here -const INTEGRATIONS_WITH_DUP_OAUTH_KEYS = ['servicenow', 'servicenow-normal']; // these are integrations we expect to have duplicate oauth integration keys for various reasons +const INTEGRATIONS_WITH_DUP_OAUTH_KEYS = [ + 'servicenow', + 'servicenow-normal', + 'servicenow-app', +]; // these are integrations we expect to have duplicate oauth integration keys for various reasons var parse = require('url-parse'); @@ -431,8 +437,10 @@ describe('All integrations', () => { test.each(manifests)( 'at least one externalCapability has been defined if no manifest capabilities for %s', (key, manifest) => { + const integrationsWithNoCapabilities = ['aiconfig-test-run']; const capabilities = _.get(manifest, 'capabilities', null); - if (!capabilities) { + + if (!capabilities && !integrationsWithNoCapabilities.includes(key)) { const otherCapabilities = _.get(manifest, 'otherCapabilities', null); expect(otherCapabilities).not.toBeNull(); expect(otherCapabilities.length).toBeGreaterThan(0); diff --git a/docs/capabilities.md b/docs/capabilities.md new file mode 100644 index 00000000..77967c21 --- /dev/null +++ b/docs/capabilities.md @@ -0,0 +1,299 @@ +# Capabilities + +Your integration's `capabilities` describe how it interacts with LaunchDarkly. + +We support three capabilities: + +- [Audit log events hook](#audit-log-events-hook-auditlogeventshook) (`auditLogEventsHook`) +- [Trigger](#trigger-trigger) (`trigger`) +- [Reserved custom properties](#reserved-custom-properties-reservedcustomproperties) (`reservedCustomProperties`) + +## Audit log events hook (`auditLogEventsHook`) + +An audit log events hook is a webhook that LaunchDarkly sends whenever an +event happens inside of LaunchDarkly. Each of these events +result in an event being published to LaunchDarkly's audit log. +You can use this capability to send data to or trigger an event in another service. + +The `auditLogEventsHook` has three properties: + +1. [`endpoint`](#endpoint): + Describes the HTTP handler that will receive the webhook. +2. [`templates`](#templates): + A map of template paths relative to your integration's directory. You can use templates to transform the raw audit log events to a format that your integration expects. These templates can be any file type. +3. [`defaultPolicy`](#default-policy): + An array of [LaunchDarkly + policies](https://docs.launchdarkly.com/home/account-security/custom-roles/policies) that + act as a filter determining which events to send to your webhook endpoint. + +Here's an example of an audit log events hook capability that subscribes to flag +events in a LaunchDarkly account: + +```json + "capabilities": { + "auditLogEventsHook": { + "endpoint": { + "url": "{{endpointUrl}}", + "method": "POST", + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + }, + { + "name": "Authorization", + "value": "Bearer {{apiToken}}" + } + ] + }, + "templates": { + "flag": "templates/flag.json" + }, + "defaultPolicy": [ + { + "effect": "allow", + "resources": ["proj/*:env/production:flag/*"], + "actions": ["*"] + } + ] + } + } +``` + +### Endpoint + +Every `auditLogEventsHook` capability must specify the endpoint to which LaunchDarkly should send webhook data. This specification must include all appropriate request semantics including the URL, method, and headers. + +In the example +above, a few of the properties (`endpoint.url` and +`endpoint.headers[].value`) accept template variables. These template +variables can reference any `formVariables` you've defined in your manifest. +The templating language we use is based off of a subset of the +Handlebars syntax. + +To learn more, read [Handlebars' documentation](https://handlebarsjs.com/). + +There are a few properties that allow you to substitute template variables at +runtime. The main ones are the `endpoint.url` and the +`endpoint.headers[].value`. This lets you configure a dynamic endpoint +based on the `formVariables` your integration collects from the user. Examples follow. + +This example uses the `endpointUrl` form variable as the URL of the endpoint and the `apiToken` as a `Bearer` token in the `Authorization` header: + +```json + "endpoint": { + "url": "{{endpointUrl}}", + "method": "POST", + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + }, + { + "name": "Authorization", + "value": "Bearer {{apiToken}}" + } + ] + }, +``` + +This example uses the `apiToken` formVariable as a query parameter on the URL: + +```json + "endpoint": { + "url": "https://example.com/apiToken?={{apiToken}}", + "method": "POST" + }, +``` + +### Templates + +Before the `auditLogEventsHook` capability sends the request to the endpoint +handling your webhook, you can transform the body of the request +sent to your handler. + +In your manifest, you can specify templates to be executed when webhook events are of kinds `flag`, `project`, and `environment`. Additionally, you can specify a `default` template as a catch-all for any event without a more specific template. A `validation` template is also provided in case you want to provide users with the ability to validate their connection by sending a test event from LaunchDarkly to your service. + +```json + "templates": { + "default": "templates/default.json.hbs", + "flag": "templates/flag.json.hbs", + "project": "templates/project.json.hbs", + "environment": "templates/environment.json.hbs", + "validation": "templates/default.json.hbs" + }, +``` + +If you don't provide one or more templates, LaunchDarkly +sends you a default JSON payload that looks like this: + +```json +{ + "_links": { + "canonical": { + "href": "/api/v2/flags/always-snippet/example-test", + "type": "application/json" + }, + "parent": { + "href": "/api/v2/auditlog", + "type": "application/json" + }, + "self": { + "href": "/api/v2/auditlog/5defebd006121dd9f7ea90d0", + "type": "application/json" + }, + "site": { + "href": "/always-snippet/production/features/example-test", + "type": "text/html" + } + }, + "_id": "5defebd006121dd9f7ea90d0", + "_accountId": "", + "timestamp": { + "milliseconds": 1580778134028, + "seconds": 1580778134, + "rfc3339": "2020-02-04T01:02:14Z" + }, + "kind": "flag", + "name": "Example test", + "description": "", + "shortDescription": "", + "comment": "This is just a test", + "member": { + "_links": { + "parent": { + "href": "/api/v2/members", + "type": "application/json" + }, + "self": { + "href": "/api/v2/members/569f514183f2164430000002", + "type": "application/json" + } + }, + "_id": "569f514183f2164430000002", + "email": "testing@example.com", + "firstName": "Henry", + "lastName": "Barrow" + }, + "titleVerb": "", + "markdownTitle": "[Henrietta Powell](mailto:testing@example.com) turned on the flag [Example test](http://app.launchdarkly/exampledotcom/production/features/example-test) in `Production`", + "title": "Henrietta Powell turned on the flag Example test in 'Production'", + "target": { + "_links": null, + "name": "" + } +} +``` + +If you choose to provide one or more +`templates`, +LaunchDarkly renders your template using the context data above. Your +template can be any text based format, but you must specify the appropriate +`Content-Type` header in your `endpoint.headers` property to match the content +type of your template body. + +We use a basic subset of the Handlebars template syntax to render +your template. + +To learn more about Handlebars' sysntax, read [Handlebars' Language +Guide](https://handlebarsjs.com/guide/). + +In addition to the basic language syntax, we support the following [built-in +helpers](https://handlebarsjs.com/guide/builtin-helpers.html): + +- `if` +- `unless` +- `each` +- `with` +- `lookup` + +Furthermore, the following custom helpers are supported: + +- `equal` - renders a block if the string version of both arguments are equals +- `pathEncode` - URL path encodes the string version of the argument +- `queryEncode` - URL query encodes the string version of the argument + +To test your templates, you can run `npm run preview $INTEGRATION_NAME` or use the [Handlebars +Sandbox](http://tryhandlebarsjs.com/). + +### Default policy + +When you configure your integration, customers can specify an array of [LaunchDarkly +policies](https://docs.launchdarkly.com/home/account-security/custom-roles/policies) filter which events to send to your webhook endpoint. + +To simplify onboarding your integration, you can specify a default policy which follows best practices for your integration's use case. + +Assuming your integration only cares about flag activity, we recommend the following default policy. This policy specifies that LaunchDarkly will notify your integration of all flag activity across production environments from all projects. + +Here is the policy: + +```json + "defaultPolicy": [ + { + "effect": "allow", + "resources": ["proj/*:env/production:flag/*"], + "actions": ["*"] + } + ] +``` + +### Validation + +To preview your integration's templates with sample data, run `npm run preview INTEGRATION_NAME`. + +Alternatively, to produce a sample `curl` command, run `npm run curl INTEGRATION_NAME`. This returns data with your integration's service as if it was sent by the audit log event hook capability. + +## Trigger (`trigger`) + +**At the time of this writing, LaunchDarkly's trigger functionality is only available to customers opted in to an early access program. Email [partnerships@launchdarkly.com](mailto:partnerships@launchdarkly.com) to request access.** + +The trigger capability is used to generate a unique webhook URL that your service can request to generate a user-defined flag change in LaunchDarkly. + +By default, the trigger URL contains a globally unique path parameter to provide security in the form of an [unguessable URL](https://www.schneier.com/blog/archives/2015/07/googles_unguess.html). However, if your service supports additional security settings such as shared secrets when firing webhooks, you can specify those with the optional `auth` object. **Note**: at launch, the `auth` attribute is unsupported and should be omitted. + +The required `documentation` field must be a link to documentation outlining how webhooks should be configured in your service. + +If the integration offers the option to send test events / webhook requests, the optional `testEventNameRegexp` fields allows you to specify regex to match the expected `eventName` value below. This will tell our integration framework not to make any real flag or resource changes associated with matching events. + +If your webhooks' request bodies are non-empty, you can specify the optional `parser` object with one or more of `eventName`, `value`, and `url`. The provided values will flow through LaunchDarkly into the resulting audit log messages when your service invokes a trigger in LaunchDarkly. + +Here is a sample `trigger` capability including all optional properties: + +```json + "trigger": { + "documentation": "https://example.com/configuring-webhooks", + "auth": { + "type": "sharedSecret" + }, + "parser": { + "eventName": "/event", + "value": "/value", + "url": "/links/self/href" + }, + } +``` + +**Note**: if an integration only has the trigger capability, the word "trigger" will be added to its name in the LaunchDarkly UI. For this reason, do not include the word "trigger" in the manifest name. See the [generic-trigger manifest](/integrations/generic-trigger/manifest.json) for an example. + +## Reserved custom properties (`reservedCustomProperties`) + +Custom properties allow you to store data in LaunchDarkly alongside a feature flag. For example, you can use custom properties to indicate flag-level associations with data on your service. If you don't have any flag-level associations or configurations, you don't need to use this capability. + +To learn more, read [Custom properties](https://docs.launchdarkly.com/home/advanced/custom-properties). + +By default, users must specify a custom property name and key when they attach the custom property value to a feature flag. This step introduces the possibility of user error. To prevent this, developers can _reserve_ a custom property for their integration, which makes it much easier for users to correctly add the property's value to feature flags. + +Reserved custom properties are simple to define. Their only requirements are a `name` and `key`. + +After your integration is configured by a user, the custom property starts appearing in the dropdown on the flag's Settings page. + +Here is a sample `reservedCustomProperties` capability: + +```json + "reservedCustomProperties": [ + { + "name": "Foobar Entities", + "key": "foobar" + } + ], +``` \ No newline at end of file diff --git a/docs/form-variables.md b/docs/form-variables.md new file mode 100644 index 00000000..152d12ac --- /dev/null +++ b/docs/form-variables.md @@ -0,0 +1,44 @@ +# Form variables + +Most integrations need to collect one or more pieces of configuration data +that supports the integration, such as API tokens or webhook endpoints. + +To support these configurations, describe a set of +`formVariables` that define these configuration properties. + +Here's an example: + +```json + "formVariables": [ + { + "key": "endpointUrl", + "name": "Webhook endpoint URL", + "description": "Enter the URL to the webhook endpoint", + "defaultValue": "https://example.com/inbound_webhook", + "type": "url" + }, + { + "key": "apiToken", + "name": "API Key", + "description": "Enter your [API key](https://example.com/api) here", + "type": "string", + "isSecret": true + } + ], +``` + +The `formVariables` entry above displays as the following UI in the [LaunchDarkly Integrations +page](https://app.launchdarkly.com/default/integrations): + +![Example configuration +form](https://gist.githubusercontent.com/rmanalan/447b78a8c00a46c8638cca834c3009a3/raw/810d8941f29c0306021a973bd6cf10c42bdea03b/goaltender-config-ui.png) + +Form variables apply to the entire integration configuration. There are no capability-specific form variables. + +The `formVariables[].description` will be used as a field label on the UI. You +can use simple markdown to link a word or phrase to an external URL. + +Accepted form variable types are `string`, `boolean`, `uri`, `enum`, and `dynamicEnum`. +Optionally, you can set `isSecret` or `isOptional` if necessary, or provide guidance with `placeholder` and `defaultValue`. If you provide a `defaultValue`, you must also set `isOptional` to `true` and vice versa. + +To learn more, read the [manifest schema](../manifest.schema.json). \ No newline at end of file diff --git a/docs/getting-started.md b/docs/getting-started.md new file mode 100644 index 00000000..f6c9aaf1 --- /dev/null +++ b/docs/getting-started.md @@ -0,0 +1,85 @@ +# Getting started + +There are several steps to building an integration with LaunchDarkly. + +## Prerequisites + +Before you connect LaunchDarkly with a third-party service, replicate your integration's desired behavior in an isolated standalone environment separate from LaunchDarkly. + +The easiest way to do this is to use [`curl`](https://curl.haxx.se/docs/manpage.html). Find the API documentation for your third-party service and execute sample commands against it. A lot of API documentation has `curl` example commands provided for developers to use. + +When you execute your sample commands, observe the request semantics. This helps streamline your manifest and template definitions. + +## Step 1: Fork this repository + +Fork this repository to your own GitHub account. + +After you finish building your integration, you can submit a pull request to LaunchDarkly to have it approved and deployed. + +To learn more about submitting a pull request, read [Step 8: Submit your integration](#step-8-submit-your-integration). + +## Step 2: Create a new directory inside `./integrations` + +Create a new directory inside the [integrations](../integrations) directory. Name it +after your organization or give it the integration's name (For example, `your-company-name-dot-com`). + +The directory name must not have any spaces and must use +[kebab-casing](https://wiki.c2.com/?KebabCase). + +Only change files and directories inside your new directory. Our validation process rejects any pull requests with modified content outside of your directory. + +## Step 3: Create your integration manifest + +Each integration contains a manifest defining basic concepts about your integration and organization. Manifests also instruct LaunchDarkly in how to interact with your integration. + +Defining your manifest is the single most important step in contributing your integration to LaunchDarkly's platform. It's important to configure your manifest correctly. + +To learn more, read [Integration manifest](manifest.md). + +## Step 4: Collect integration configuration data from LaunchDarkly users + +Most integrations need to collect one or more pieces of configuration data +that support the integration (for example, API tokens or webhook endpoints). + +You can describe a set of `formVariables` that define these configuration properties. + +To learn more, read [Form variables](form-variables.md). + +## Step 5: Define your integration's capabilities + +The next step to define your LaunchDarkly integration is describing its +`capabilities`. Your integration's `capabilities` are how it interacts with LaunchDarkly. + +To learn more, read [Capabilities](capabilities.md). + +## Step 6: Validate your integration + +To validate your integration: + +1. Run `npm install` to install the validation dependencies. +2. Run `npm test` to run the validation suite. + +Additionally, we +recommend you install [pre-commit hooks](https://pre-commit.com/#install) with `pre-commit install`. This will make the validation suite run before every commit, saving you time if you need to troubleshoot anything. + +Some of the capabilities have their own validation tools. To learn more, read [Capabilities](capabilities.md). + +## Step 7: Create your user documentation and README + +Now that your integration is built and validated, you must provide documentation for users and integration maintainers. + +Find LaunchDarkly's user documentation at [docs.launchdarkly.com](https://docs.launchdarkly.com/integrations). You can submit new docs to the [LaunchDarkly-Docs repository](https://github.com/launchdarkly/LaunchDarkly-Docs). + +Submit a pull request to this repository with a new integrations guide. Follow the pattern and language used by existing integration guides. + +In addition to user documentation, you must to provide guidance on how to maintain and test your integration. Specify this developer-focused information in an integration README (`README.md`) in your integration's directory. The README should also link to the user documentation you provide. + +## Step 8: Submit your integration + +After you've built your integration, [submit a pull request against this +repo](https://github.com/launchdarkly/integration-framework/pull/new/master). + +When you do, your branch will run through some automated validations and be reviewed by +our team. If we're ready to publish your integration, we'll get your permission and make it live on our site. + +We'll also work with you on submitting your user documentation to our [documentation site](https://github.com/launchdarkly/LaunchDarkly-Docs). \ No newline at end of file diff --git a/docs/manifest.md b/docs/manifest.md new file mode 100644 index 00000000..cd56485f --- /dev/null +++ b/docs/manifest.md @@ -0,0 +1,104 @@ +# Integration manifest + +Each integration contains a manifest defining basic concepts about your +integration and organization. Manifests also instruct LaunchDarkly in how to +interact with your integration. + +Defining your manifest is the single most important step in contributing your +integration to LaunchDarkly's platform. It's important to configure your +manifest correctly. + +## Introduction + +Create an empty `manifest.json` file inside your new directory. You will use the +`manifest.json` to describe your integration's details and capabilities. + +The properties of LaunchDarkly's integration manifests are defined through a +[JSON schema](../manifest.schema.json). Many IDEs can provide you inline help +and validation while editing your manifest. You can register the JSON schema in +your IDE to enable this kind of help. + +If you use [VSCode](https://code.visualstudio.com/), it detects the settings in +this repository and aplies the schema validation without any additional +configuration. + +![vscode-hints](https://gist.githubusercontent.com/rmanalan/447b78a8c00a46c8638cca834c3009a3/raw/264fafe547a82ada8e5c134832bf35508a6b6458/manifest-vscode.png) + +## Getting started + +The first part of the manifest describes your organization, contacts, URLs, and +a few items LaunchDarkly needs to list your integration properly. + +We use most of this information when we render your integration card and +configuration form in the LaunchDarkly UI. + +```json +{ + "name": "Sample Integration", + "version": "1.0.0", + "overview": "Short one-liner describing your integration", + "description": "Send flag data to space. Markdown based description.", + "author": "Example Dot Com", + "supportEmail": "support@example.com", + "links": { + "site": "https://example.com", + "privacyPolicy": "https://example.com/privacy" + }, + "categories": ["apm", "monitoring", "alerts"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "requiresOAuth": false +} +``` + +There are a few properties in the manifest that can accept simple +[markdown](https://daringfireball.net/projects/markdown/). One of them is the +`description`. + +LaunchDarkly's UI converts markdown to HTML. To get the best results, only use +simple markdown, like links and basic text formatting. + +Notice that the `icons` described above are in SVG format. This is intentional. +We do not accept other image formats. + +We use your organization's or integration's logo in the LaunchDarkly UI and a +public facing integrations listing on +[launchdarkly.com/integrations](https://launchdarkly.com/integrations/). SVG +files allow your logo to scale nicely on different devices. To make sure your +logo appears correctly everywhere we use it, make sure that your SVG logos don't +have any padding around the image. + +Also, notice that the `icon.square` and `icon.horizontal` properties point to +relative paths. These paths are relative to your integration's directory. You +are free to create any directories and files that support your integration. + +## OAuth + +Many integrations in LaunchDarkly today use API Tokens. However, if your API +requires OAuth for authentication, we can support that as well. Currently, we +support two types of OAuth: + +* [Authorization Code Flow](https://oauth.net/2/grant-types/authorization-code/) + (aka, 3-legged OAuth) +* [Client Credentials Flow](https://oauth.net/2/grant-types/client-credentials/) + (aka, 2-legged OAuth) + +With these flows, LaunchDarkly acts as the OAuth consumer. In order for this to +work, LaunchDarkly will need to store a consumer ID and secret. Please contact +us at to register your OAuth consumer details. +You'll also need to set the `requiresOAuth` root-level property in your manifest +to `true`. At runtime, LaunchDarkly will lookup your OAuth consumer ID and +secret from our registry based on your integration key. **Simply setting the +`requiresOAuth` property to `true` will not enable OAuth on your integration -- +you'll need to provide us with the OAuth consumer details first.** + +## Form variables and capabilities + +Form variables and capabilities are the most important part of the manifest. +They define the primary interactions that LaunchDarkly and users will have with +your integration. + +Read more about [form variables](form-variables.md) and +[capabilities](capabilities.md). \ No newline at end of file diff --git a/integrations/adfs/manifest.json b/integrations/adfs/manifest.json index a1c46048..70ec469d 100644 --- a/integrations/adfs/manifest.json +++ b/integrations/adfs/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://docs.microsoft.com/en-us/windows-server/identity/active-directory-federation-services", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/account-security/adfs", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/account/adfs", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["authentication"], diff --git a/integrations/aiconfig-test-run/assets/images/horizontal.svg b/integrations/aiconfig-test-run/assets/images/horizontal.svg new file mode 100644 index 00000000..41fcd9c7 --- /dev/null +++ b/integrations/aiconfig-test-run/assets/images/horizontal.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/aiconfig-test-run/assets/images/square.svg b/integrations/aiconfig-test-run/assets/images/square.svg new file mode 100644 index 00000000..41fcd9c7 --- /dev/null +++ b/integrations/aiconfig-test-run/assets/images/square.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/aiconfig-test-run/manifest.json b/integrations/aiconfig-test-run/manifest.json new file mode 100644 index 00000000..357a7a60 --- /dev/null +++ b/integrations/aiconfig-test-run/manifest.json @@ -0,0 +1,38 @@ +{ + "name": "AI Config Test Run", + "version": "1.0.0", + "overview": "Configure your LLM provider and API key to use in your AI Config test runs.", + "description": "This integration helps you configure your LLM provider and API key to use in your AI Config test runs.", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://launchdarkly.com/", + "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/ai-config-test-runs", + "privacyPolicy": "https://launchdarkly.com/policies/privacy/" + }, + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "categories": ["ai"], + "requiresOAuth": false, + "allowIntegrationConfigurations": true, + "formVariables": [ + { + "key": "provider", + "name": "Model Provider", + "description": "Select your model provider", + "placeholder": "Select your model provider", + "type": "enum", + "allowedValues": ["Anthropic", "Bedrock", "OpenAI"] + }, + { + "key": "apiKey", + "name": "API Key", + "description": "Enter the API key for your selected model provider", + "placeholder": "Enter your API key", + "type": "string", + "isSecret": true + } + ] +} diff --git a/integrations/akamai-edgeworkers/manifest.json b/integrations/akamai-edgeworkers/manifest.json index 6e88cbe9..98de06e8 100644 --- a/integrations/akamai-edgeworkers/manifest.json +++ b/integrations/akamai-edgeworkers/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.akamai.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/akamai", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/akamai", "privacyPolicy": "https://www.akamai.com/legal/compliance/privacy-trust-center/" }, "categories": ["infrastructure"], diff --git a/integrations/amplitude/manifest.json b/integrations/amplitude/manifest.json index ac4e41cb..42e7bd1b 100644 --- a/integrations/amplitude/manifest.json +++ b/integrations/amplitude/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.amplitude.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/amplitude", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/amplitude", "privacyPolicy": "https://launchdarkly.com/policies/privacy" }, "categories": ["synced-segments"], diff --git a/integrations/ansible/manifest.json b/integrations/ansible/manifest.json index 28f01437..c5cd65e5 100644 --- a/integrations/ansible/manifest.json +++ b/integrations/ansible/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://galaxy.ansible.com/launchdarkly_labs/collection", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/ansible", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/ansible", "supportWebsite": "https://github.com/launchdarkly-labs/ansible-launchdarkly-collection/issues", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, diff --git a/integrations/appdynamics/README.md b/integrations/appdynamics/README.md index 19e20e1b..902d1697 100644 --- a/integrations/appdynamics/README.md +++ b/integrations/appdynamics/README.md @@ -1,6 +1,6 @@ # AppDynamics -[LaunchDarkly documentation](https://docs.launchdarkly.com/integrations/appdynamics) +[LaunchDarkly documentation](https://launchdarkly.com/docs/integrations/appdynamics) ## Setup diff --git a/integrations/appdynamics/manifest.json b/integrations/appdynamics/manifest.json index ee7a907d..e0d0703d 100644 --- a/integrations/appdynamics/manifest.json +++ b/integrations/appdynamics/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.appdynamics.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/appdynamics", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/appdynamics", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["monitoring"], diff --git a/integrations/azure-devops/manifest.json b/integrations/azure-devops/manifest.json index 3bef8d6d..1d017350 100644 --- a/integrations/azure-devops/manifest.json +++ b/integrations/azure-devops/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://azure.microsoft.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/azure-devops", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/azure-devops", "privacyPolicy": "https://privacy.microsoft.com/en-US/privacystatement" }, "categories": ["automation"], diff --git a/integrations/azure-event-hubs/manifest.json b/integrations/azure-event-hubs/manifest.json index b86c3cb1..e88ba5cd 100644 --- a/integrations/azure-event-hubs/manifest.json +++ b/integrations/azure-event-hubs/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://azure.microsoft.com/en-us/services/event-hubs/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/data-export/event-hub", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export/event-hub", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], diff --git a/integrations/azure-sso/manifest.json b/integrations/azure-sso/manifest.json index dcc9af9f..d06043de 100644 --- a/integrations/azure-sso/manifest.json +++ b/integrations/azure-sso/manifest.json @@ -7,8 +7,8 @@ "author": "LaunchDarkly", "supportEmail": "support@launchdarkly.com", "links": { - "site": "https://docs.launchdarkly.com/home/account-security/azure", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/account-security/azure", + "site": "https://launchdarkly.com/docs/home/account/entra", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/account/entra", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["authentication"], diff --git a/integrations/bigquery-native-product-analytics/assets/images/horizontal.svg b/integrations/bigquery-native-product-analytics/assets/images/horizontal.svg new file mode 100644 index 00000000..03622f8b --- /dev/null +++ b/integrations/bigquery-native-product-analytics/assets/images/horizontal.svg @@ -0,0 +1,213 @@ + + + + + + image/svg+xml + + integration-tile + + + + + + + + integration-tile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/bigquery-native-product-analytics/assets/images/square.svg b/integrations/bigquery-native-product-analytics/assets/images/square.svg new file mode 100644 index 00000000..76e46050 --- /dev/null +++ b/integrations/bigquery-native-product-analytics/assets/images/square.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/integrations/bigquery-native-product-analytics/manifest.json b/integrations/bigquery-native-product-analytics/manifest.json new file mode 100644 index 00000000..7199e5af --- /dev/null +++ b/integrations/bigquery-native-product-analytics/manifest.json @@ -0,0 +1,22 @@ +{ + "name": "BigQuery Native Product Analytics", + "version": "1.0.0", + "overview": "Run product analytics in LaunchDarkly using BigQuery warehouse data to power your insights.", + "description": "LaunchDarkly Product Analytics helps you understand how users interact with your features—so you can make data-driven decisions that boost adoption and engagement. By connecting your BigQuery data, you get powerful, warehouse-native analytics without moving data out of your stack.", + "author": "Google BigQuery", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://cloud.google.com/bigquery", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/product-analytics", + "privacyPolicy": "https://launchdarkly.com/policies/privacy" + }, + "categories": ["data"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "capabilities": { + "internalConfigurationURL": "product-analytics/integrations/bigquery" + }, + "requiresOAuth": false +} diff --git a/integrations/bigquery/assets/images/horizontal.svg b/integrations/bigquery/assets/images/horizontal.svg new file mode 100644 index 00000000..03622f8b --- /dev/null +++ b/integrations/bigquery/assets/images/horizontal.svg @@ -0,0 +1,213 @@ + + + + + + image/svg+xml + + integration-tile + + + + + + + + integration-tile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/bigquery/assets/images/square.svg b/integrations/bigquery/assets/images/square.svg new file mode 100644 index 00000000..76e46050 --- /dev/null +++ b/integrations/bigquery/assets/images/square.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/integrations/bigquery/manifest.json b/integrations/bigquery/manifest.json new file mode 100644 index 00000000..88354caa --- /dev/null +++ b/integrations/bigquery/manifest.json @@ -0,0 +1,22 @@ +{ + "name": "BigQuery Data Export", + "version": "1.0.0", + "overview": "Run analysis in your warehouse enriched by experiment traffic data or detailed flag eval events.", + "description": "Export Launchdarkly data to your BigQuery warehouse.", + "author": "Google BigQuery", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://cloud.google.com/bigquery", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export", + "privacyPolicy": "https://launchdarkly.com/policies/privacy" + }, + "categories": ["data"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "legacy": { + "kind": "dataExport" + }, + "otherCapabilities": ["dataExport", "warehouseExport"] +} diff --git a/integrations/bitbucket-flags/manifest.json b/integrations/bitbucket-flags/manifest.json index 3ea82e12..ac812dae 100644 --- a/integrations/bitbucket-flags/manifest.json +++ b/integrations/bitbucket-flags/manifest.json @@ -8,9 +8,9 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://bitbucket.org/product/features/pipelines", - "supportWebsite": "https://docs.launchdarkly.com/integrations/bitbucket-pipelines", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/bitbucket-pipelines", - "privacyPolicy": "https://docs.launchdarkly.com/home/code/code-references#configuring-context-lines" + "supportWebsite": "https://launchdarkly.com/docs/integrations/bitbucket-pipelines", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/bitbucket-pipelines", + "privacyPolicy": "https://launchdarkly.com/docs/home/observability/code-references#configure-context-lines" }, "categories": ["automation", "developer-tools"], "icons": { diff --git a/integrations/bitbucket/manifest.json b/integrations/bitbucket/manifest.json index e891addc..16c38515 100644 --- a/integrations/bitbucket/manifest.json +++ b/integrations/bitbucket/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://bitbucket.org/product/features/pipelines", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/code/bitbucket", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/observability/bitbucket", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["code-references"], diff --git a/integrations/bitrise/manifest.json b/integrations/bitrise/manifest.json index b0d2ccd1..bf51ecf1 100644 --- a/integrations/bitrise/manifest.json +++ b/integrations/bitrise/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@bitrise.io", "links": { "site": "https://bitrise.io", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/bitrise", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/bitrise", "privacyPolicy": "https://go.bitrise.io/privacy-policy" }, "categories": ["automation"], diff --git a/integrations/census-synced-segments/manifest.json b/integrations/census-synced-segments/manifest.json index e9bdfc83..3db091b3 100644 --- a/integrations/census-synced-segments/manifest.json +++ b/integrations/census-synced-segments/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@getcensus.com", "links": { "site": "https://www.getcensus.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/census", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/census", "privacyPolicy": "https://www.getcensus.com/legal/privacy-policy" }, "categories": ["data", "infrastructure", "automation"], diff --git a/integrations/chronosphere/README.md b/integrations/chronosphere/README.md index 5fcafc55..a014e6f7 100644 --- a/integrations/chronosphere/README.md +++ b/integrations/chronosphere/README.md @@ -1,5 +1,4 @@ # Chronosphere -[User documentation](https://docs.launchdarkly.com/integrations/chronosphere) - +[User documentation](https://launchdarkly.com/docs/integrations/chronosphere) [API documentation](https://docs.chronosphere.io/documentation/explore/change-events/third-party#launchdarkly) diff --git a/integrations/chronosphere/manifest.json b/integrations/chronosphere/manifest.json index 87a1b7bc..3af64d67 100644 --- a/integrations/chronosphere/manifest.json +++ b/integrations/chronosphere/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://chronosphere.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/chronosphere", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/chronosphere", "privacyPolicy": "https://chronosphere.io/privacy/" }, "categories": ["monitoring"], diff --git a/integrations/circleci-coderefs/manifest.json b/integrations/circleci-coderefs/manifest.json index 1c599c11..18a69d37 100644 --- a/integrations/circleci-coderefs/manifest.json +++ b/integrations/circleci-coderefs/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://circleci.com/orbs/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/code/circleci", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/observability/circleci", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["code-references"], diff --git a/integrations/cloudflare/manifest.json b/integrations/cloudflare/manifest.json index c7776f47..973204a3 100644 --- a/integrations/cloudflare/manifest.json +++ b/integrations/cloudflare/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.cloudflare.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/cloudflare", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/cloudflare", "privacyPolicy": "https://www.cloudflare.com/privacypolicy/" }, "categories": ["infrastructure"], diff --git a/integrations/cloudtrail/manifest.json b/integrations/cloudtrail/manifest.json index a934864d..42030eeb 100644 --- a/integrations/cloudtrail/manifest.json +++ b/integrations/cloudtrail/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://aws.amazon.com/cloudtrail/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/cloudtrail", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/cloudtrail", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["monitoring", "analytics"], @@ -19,7 +19,7 @@ { "key": "externalId", "name": "External Id", - "description": "Use this [external id](https://docs.launchdarkly.com/integrations/cloudtrail) for your resource policy when setting up the integration in the AWS Console.", + "description": "Use this [external id](https://launchdarkly.com/docs/integrations/cloudtrail) for your resource policy when setting up the integration in the AWS Console.", "type": "generated" }, { diff --git a/integrations/compass/manifest.json b/integrations/compass/manifest.json index f7c5fbb9..cd5ffc0b 100644 --- a/integrations/compass/manifest.json +++ b/integrations/compass/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "compassfb@customerfeedback.atlassian.net", "links": { "site": "https://www.atlassian.com/software/compass", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/compass", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/compass", "supportWebsite": "https://community.atlassian.com/t5/Compass-Alpha/gh-p/compass-alpha", "privacyPolicy": "https://www.atlassian.com/legal/privacy-policy" }, diff --git a/integrations/confluence-embedded-pages/manifest.json b/integrations/confluence-embedded-pages/manifest.json index 6e736631..423df5db 100644 --- a/integrations/confluence-embedded-pages/manifest.json +++ b/integrations/confluence-embedded-pages/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.atlassian.com/software/confluence", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/confluence", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/confluence", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["developer-tools"], diff --git a/integrations/cortex/manifest.json b/integrations/cortex/manifest.json index 8b0fdde7..d1275ebf 100644 --- a/integrations/cortex/manifest.json +++ b/integrations/cortex/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@cortex.io", "links": { "site": "https://www.cortex.io/home", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/cortex", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/cortex", "supportWebsite": "https://support.getcortexapp.com/", "privacyPolicy": "https://www.cortex.io/legal/privacy-policy" }, diff --git a/integrations/crossplane/icons/horizontal.svg b/integrations/crossplane/icons/horizontal.svg new file mode 100644 index 00000000..699ef0b6 --- /dev/null +++ b/integrations/crossplane/icons/horizontal.svg @@ -0,0 +1,310 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/crossplane/icons/square.svg b/integrations/crossplane/icons/square.svg new file mode 100644 index 00000000..29954631 --- /dev/null +++ b/integrations/crossplane/icons/square.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/crossplane/manifest.json b/integrations/crossplane/manifest.json new file mode 100644 index 00000000..502b3636 --- /dev/null +++ b/integrations/crossplane/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "Crossplane", + "version": "1.0.0", + "overview": "Manage your LaunchDarkly resources with Crossplane.", + "description": "Use Crossplane to manage your LaunchDarkly resources.", + "details": "Crossplane is a tool for building, changing, and versioning infrastructure safely and efficiently. Crossplane can manage existing and popular service providers as well as custom in-house solutions. With the LaunchDarkly Crossplane provider, you can automate the creation and management of LaunchDarkly resources, such as projects, environments, and feature flags, streamlining your development and release workflows.​", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "links": { + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/crossplane", + "supportWebsite": "https://marketplace.upbound.io/providers/launchdarkly/provider-launchdarkly", + "site": "https://marketplace.upbound.io/providers/launchdarkly/provider-launchdarkly", + "privacyPolicy": "https://launchdarkly.com/policies/privacy/" + }, + "categories": ["infrastructure"], + "icons": { + "square": "icons/square.svg", + "horizontal": "icons/horizontal.svg" + }, + "otherCapabilities": ["external"] +} diff --git a/integrations/ctrlstack/manifest.json b/integrations/ctrlstack/manifest.json index 2c7fe4cb..b4866eae 100644 --- a/integrations/ctrlstack/manifest.json +++ b/integrations/ctrlstack/manifest.json @@ -9,7 +9,7 @@ "links": { "site": "https://ctrlstack.com", "supportWebsite": "https://www.ctrlstack.com/contact/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/ctrlstack", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/ctrlstack", "privacyPolicy": "https://www.ctrlstack.com/terms-and-policy/" }, "categories": ["monitoring", "developer-tools"], diff --git a/integrations/custom-approvals-oauth/assets/images/horizontal.svg b/integrations/custom-approvals-oauth/assets/images/horizontal.svg new file mode 100644 index 00000000..2c338d9f --- /dev/null +++ b/integrations/custom-approvals-oauth/assets/images/horizontal.svg @@ -0,0 +1,3 @@ + + + diff --git a/integrations/custom-approvals-oauth/assets/images/square.svg b/integrations/custom-approvals-oauth/assets/images/square.svg new file mode 100644 index 00000000..2c338d9f --- /dev/null +++ b/integrations/custom-approvals-oauth/assets/images/square.svg @@ -0,0 +1,3 @@ + + + diff --git a/integrations/custom-approvals-oauth/manifest.json b/integrations/custom-approvals-oauth/manifest.json new file mode 100644 index 00000000..d17966a0 --- /dev/null +++ b/integrations/custom-approvals-oauth/manifest.json @@ -0,0 +1,137 @@ +{ + "name": "Custom Approvals with OAuth", + "version": "1.0.0", + "overview": "Integrate LaunchDarkly approvals with an application of your own design.", + "description": "Integrate LaunchDarkly approvals with an application of your own design.", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://launchdarkly.com/", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/custom-approvals-oauth", + "privacyPolicy": "https://launchdarkly.com/policies/privacy/" + }, + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "categories": ["approval"], + "requiresOAuth": true, + "oauthIntegrationKey": "custom-approvals-oauth", + "formVariables": [], + "allowIntegrationConfigurations": true, + "capabilities": { + "approval": { + "name": "Custom Approvals with OAuth", + "approvalFormVariables": [], + "allowApprovalIntegrationConfigurations": true, + "allowAdditionalApprovalFormVariables": true, + "environmentFormVariables": [], + "creationRequest": { + "endpoint": { + "url": "{{ oauth.baseURI }}/api/approvals", + "method": "POST", + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + }, + { + "name": "Authorization", + "value": "Bearer {{ oauth.accessToken }}" + } + ] + }, + "jsonBody": "{\"_site\": {\"href\": \"{{_links.approval.href}}\"}, \"_id\": \"{{approvalId}}\", {{#if details.plainText}}\"details\": \"{{details.plainText}}\",{{/if}} \"project\": {\"name\":\"{{project.name}}\", \"key\": \"{{project.key}}\", \"tags\":[{{#each project.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]}, \"environment\": {\"name\":\"{{project.environment.name}}\", \"key\": \"{{project.environment.key}}\", \"tags\":[{{#each project.environment.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]}, \"flag\": {\"name\":\"{{flag.name}}\", \"key\": \"{{flag.key}}\", \"tags\":[{{#each flag.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]},{{#if title.member}}\"requestedBy\": {\"id\": \"{{member._id}}\", \"email\": \"{{member.email}}\"},{{/if}}\"shortDescription\": \"{{{title.plainText}}}\", \"timestamp\": \"{{timestamp.milliseconds}}\", \"approvalFormVariables\": { {{#each approvalFormVariables}} \"{{@key}}\": \"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}} },\"comment\": \"{{approvalDescription}}\" }", + "parser": { + "approvalId": "/_id", + "statusValue": "/status/value", + "statusDisplay": "/status/display", + "approvalMatcher": "approved", + "rejectionMatcher": "declined", + "urlTemplate": "{{ oauth.baseURI }}/approvals?approvalID={{ context.approvalId }}" + } + }, + "statusRequest": { + "endpoint": { + "url": "{{ oauth.baseURI }}/api/approvals/{{ context.approvalId }}/status", + "method": "GET", + "headers": [ + { + "name": "Authorization", + "value": "Bearer {{ oauth.accessToken }}" + } + ] + }, + "parser": { + "statusValue": "/status/value", + "statusDisplay": "/status/display", + "approvalMatcher": "approved", + "rejectionMatcher": "declined" + } + }, + "postApplyRequest": { + "endpoint": { + "url": "{{ oauth.baseURI }}/api/approvals/{{ context.approvalId }}/apply", + "method": "POST", + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + }, + { + "name": "Authorization", + "value": "Bearer {{ oauth.accessToken }}" + } + ] + }, + "parser": { + "statusValue": "/status/value", + "statusDisplay": "/status/display", + "approvalMatcher": "approved", + "rejectionMatcher": "declined" + } + }, + "deletionRequest": { + "endpoint": { + "url": "{{ oauth.baseURI }}/api/approvals/{{ context.approvalId }}/cancel", + "method": "POST", + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + }, + { + "name": "Authorization", + "value": "Bearer {{ oauth.accessToken }}" + } + ] + }, + "parser": { + "statusValue": "/status/value", + "statusDisplay": "/status/display", + "approvalMatcher": "approved", + "rejectionMatcher": "declined" + } + }, + "memberListRequest": { + "endpoint": { + "url": "{{ oauth.baseURI }}/api/members", + "method": "GET", + "headers": [ + { + "name": "Authorization", + "value": "Bearer {{oauth.accessToken}}" + } + ] + }, + "parser": { + "memberArrayPath": "/members", + "memberItems": { + "memberId": "/name", + "email": "/email" + } + } + } + } + } +} diff --git a/integrations/custom-approvals/manifest.json b/integrations/custom-approvals/manifest.json index f8a2558e..3e310dc1 100644 --- a/integrations/custom-approvals/manifest.json +++ b/integrations/custom-approvals/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://launchdarkly.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/custom-approvals", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/custom-approvals", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "icons": { @@ -55,7 +55,7 @@ } ] }, - "jsonBody": "{\"_site\": {\"href\": \"{{_links.approval.href}}\"}, \"_id\": \"{{approvalId}}\", {{#if details.plainText}}\"details\": \"{{details.plainText}}\",{{/if}} \"project\": {\"name\":\"{{project.name}}\", \"key\": \"{{project.key}}\", \"tags\":[{{#each project.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]}, \"environment\": {\"name\":\"{{project.environment.name}}\", \"key\": \"{{project.environment.key}}\", \"tags\":[{{#each project.environment.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]}, \"flag\": {\"name\":\"{{flag.name}}\", \"key\": \"{{flag.key}}\", \"tags\":[{{#each flag.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]},{{#if title.member}}\"requestedBy\": {\"id\": \"{{member._id}}\", \"email\": \"{{member.email}}\"},{{/if}}\"shortDescription\": \"{{{title.plainText}}}\", \"timestamp\": \"{{timestamp.milliseconds}}\", \"approvalFormVariables\": { {{#each approvalFormVariables}} \"{{@key}}\": \"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}} },\"comment\": \"{{approvalDescription}}\" }", + "jsonBody": "{\"_site\": {\"href\": \"{{_links.approval.href}}\"}, \"_id\": \"{{approvalId}}\", {{#if details.plainText}}\"details\": \"{{{details.plainText}}}\",{{/if}} \"project\": {\"name\":\"{{{project.name}}}\", \"key\": \"{{project.key}}\", \"tags\":[{{#each project.tags}}\"{{{this}}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]}, \"environment\": {\"name\":\"{{{project.environment.name}}}\", \"key\": \"{{project.environment.key}}\", \"tags\":[{{#each project.environment.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]}, \"flag\": {\"name\":\"{{{flag.name}}}\", \"key\": \"{{flag.key}}\", \"tags\":[{{#each flag.tags}}\"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}}]},{{#if title.member}}\"requestedBy\": {\"id\": \"{{member._id}}\", \"email\": \"{{member.email}}\"},{{/if}}\"shortDescription\": \"{{{title.plainText}}}\", \"timestamp\": \"{{timestamp.milliseconds}}\", \"approvalFormVariables\": { {{#each approvalFormVariables}} \"{{@key}}\": \"{{{this}}}\"{{#if @last}}{{else}},{{/if}}{{/each}} },\"comment\": \"{{{approvalDescription}}}\" }", "parser": { "approvalId": "/_id", "statusValue": "/status/value", @@ -129,12 +129,12 @@ }, "memberListRequest": { "endpoint": { - "url": "{{baseURI}}/api/members", + "url": "{{baseURL}}/api/members", "method": "GET", "headers": [ { "name": "Authorization", - "value": "Bearer {{apiToken}}" + "value": "Bearer {{apiKey}}" } ] }, diff --git a/integrations/databricks-native-product-analytics/assets/images/horizontal.svg b/integrations/databricks-native-product-analytics/assets/images/horizontal.svg new file mode 100644 index 00000000..b61e33b9 --- /dev/null +++ b/integrations/databricks-native-product-analytics/assets/images/horizontal.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integrations/databricks-native-product-analytics/assets/images/square.svg b/integrations/databricks-native-product-analytics/assets/images/square.svg new file mode 100644 index 00000000..b1e921fc --- /dev/null +++ b/integrations/databricks-native-product-analytics/assets/images/square.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/integrations/databricks-native-product-analytics/manifest.json b/integrations/databricks-native-product-analytics/manifest.json new file mode 100644 index 00000000..4943f077 --- /dev/null +++ b/integrations/databricks-native-product-analytics/manifest.json @@ -0,0 +1,22 @@ +{ + "name": "Databricks Native Product Analytics", + "version": "1.0.0", + "overview": "Run product analytics in LaunchDarkly using Databricks warehouse data to power your insights.", + "description": "LaunchDarkly Product Analytics helps you understand how users interact with your features—so you can make data-driven decisions that boost adoption and engagement. By connecting your Databricks data, you get powerful, warehouse-native analytics without moving data out of your stack. ", + "author": "Databricks", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://www.databricks.com", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/product-analytics", + "privacyPolicy": "https://launchdarkly.com/policies/privacy" + }, + "categories": ["data"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "capabilities": { + "internalConfigurationURL": "product-analytics/integrations/databricks" + }, + "requiresOAuth": false +} diff --git a/integrations/databricks/assets/images/horizontal.svg b/integrations/databricks/assets/images/horizontal.svg new file mode 100644 index 00000000..b61e33b9 --- /dev/null +++ b/integrations/databricks/assets/images/horizontal.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integrations/databricks/assets/images/square.svg b/integrations/databricks/assets/images/square.svg new file mode 100644 index 00000000..b1e921fc --- /dev/null +++ b/integrations/databricks/assets/images/square.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/integrations/databricks/manifest.json b/integrations/databricks/manifest.json new file mode 100644 index 00000000..9a1114c3 --- /dev/null +++ b/integrations/databricks/manifest.json @@ -0,0 +1,22 @@ +{ + "name": "Databricks Data Export", + "version": "1.0.0", + "overview": "Run analysis in your warehouse enriched by experiment traffic data or detailed flag eval events.", + "description": "Export Launchdarkly data to your Databricks warehouse.", + "author": "Databricks", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://www.databricks.com", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export", + "privacyPolicy": "https://launchdarkly.com/policies/privacy" + }, + "categories": ["data"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "legacy": { + "kind": "dataExport" + }, + "otherCapabilities": ["dataExport", "warehouseExport"] +} diff --git a/integrations/datadog-flag-trigger/manifest.json b/integrations/datadog-flag-trigger/manifest.json index 46d454b4..498de345 100644 --- a/integrations/datadog-flag-trigger/manifest.json +++ b/integrations/datadog-flag-trigger/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.datadoghq.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/datadog/triggers", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/datadog/triggers", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["developer-tools", "monitoring"], diff --git a/integrations/datadog-legacy/manifest.json b/integrations/datadog-legacy/manifest.json index c279c06a..74609534 100644 --- a/integrations/datadog-legacy/manifest.json +++ b/integrations/datadog-legacy/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.datadoghq.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/datadog", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/datadog", "privacyPolicy": "https://www.datadoghq.com/legal/privacy" }, "categories": ["monitoring", "notifications"], diff --git a/integrations/datadog-private/README.md b/integrations/datadog-private/README.md index aeafb4ce..00cc976f 100644 --- a/integrations/datadog-private/README.md +++ b/integrations/datadog-private/README.md @@ -1,6 +1,6 @@ # Datadog -[User documentation](https://docs.launchdarkly.com/integrations/datadog) +[User documentation](https://launchdarkly.com/docs/integrations/datadog) [API documentation](https://docs.datadoghq.com/api/?lang=bash#events) diff --git a/integrations/datadog-private/manifest.json b/integrations/datadog-private/manifest.json index 3b9d7641..2cab26fd 100644 --- a/integrations/datadog-private/manifest.json +++ b/integrations/datadog-private/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.datadoghq.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/datadog", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/datadog/events", "privacyPolicy": "https://www.datadoghq.com/legal/privacy" }, "categories": ["monitoring"], diff --git a/integrations/datadog-rum/manifest.json b/integrations/datadog-rum/manifest.json index 6a7398ab..0947884b 100644 --- a/integrations/datadog-rum/manifest.json +++ b/integrations/datadog-rum/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@datadoghq.com", "links": { "site": "https://www.datadoghq.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/datadog/rum", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/datadog/rum", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["developer-tools", "monitoring"], diff --git a/integrations/datadog/README.md b/integrations/datadog/README.md index 91a47d3a..b308ccdf 100644 --- a/integrations/datadog/README.md +++ b/integrations/datadog/README.md @@ -1,6 +1,6 @@ # Datadog -[User documentation](https://docs.launchdarkly.com/integrations/datadog) +[User documentation](https://launchdarkly.com/docs/integrations/datadog) [API documentation](https://docs.datadoghq.com/api/?lang=bash#events) diff --git a/integrations/datadog/manifest.json b/integrations/datadog/manifest.json index 8b9beb03..c49cce36 100644 --- a/integrations/datadog/manifest.json +++ b/integrations/datadog/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.datadoghq.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/datadog", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/datadog", "privacyPolicy": "https://www.datadoghq.com/legal/privacy" }, "categories": ["monitoring"], @@ -87,7 +87,7 @@ ] }, "trigger": { - "documentation": "https://docs.launchdarkly.com/integrations/datadog/triggers#connecting-a-flag-trigger-to-datadog", + "documentation": "https://launchdarkly.com/docs/integrations/datadog/triggers#connect-a-flag-trigger-to-datadog", "testEventNameRegexp": ".+ \\[TEST\\].+", "parser": { "eventName": "/title", diff --git a/integrations/ditto/manifest.json b/integrations/ditto/manifest.json index 5d76062a..c372b9f1 100644 --- a/integrations/ditto/manifest.json +++ b/integrations/ditto/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@dittowords.com", "links": { "site": "https://www.dittowords.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/ditto", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/ditto", "privacyPolicy": "https://www.dittowords.com/legal/privacy-policy" }, "categories": ["developer-tools"], diff --git a/integrations/dynamodb/manifest.json b/integrations/dynamodb/manifest.json index 353b746f..f629ceac 100644 --- a/integrations/dynamodb/manifest.json +++ b/integrations/dynamodb/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://aws.amazon.com/pm/dynamodb/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/dynamodb", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/dynamodb", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["big-segment-store", "data", "synced-segments"], diff --git a/integrations/dynatrace-cloud-automation/manifest.json b/integrations/dynatrace-cloud-automation/manifest.json index fa13e618..c1ad91d1 100644 --- a/integrations/dynatrace-cloud-automation/manifest.json +++ b/integrations/dynatrace-cloud-automation/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.dynatrace.com/platform/cloud-automation/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/dynatrace#cloud-automation", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/dynatrace", "privacyPolicy": "https://www.dynatrace.com/company/trust-center/privacy/" }, "categories": ["automation", "developer-tools"], @@ -17,7 +17,7 @@ }, "capabilities": { "trigger": { - "documentation": "https://docs.launchdarkly.com/integrations/dynatrace/triggers#connecting-a-launchdarkly-trigger-to-dynatrace", + "documentation": "https://launchdarkly.com/docs/integrations/dynatrace/triggers#connect-a-launchdarkly-trigger-to-dynatrace", "defaultEventName": "An event", "parser": { "eventName": "/eventName", diff --git a/integrations/dynatrace-v2/LICENSE.md b/integrations/dynatrace-v2/LICENSE.md new file mode 100644 index 00000000..9dcbe896 --- /dev/null +++ b/integrations/dynatrace-v2/LICENSE.md @@ -0,0 +1,13 @@ +Copyright 2020 Catamorphic Co. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/integrations/dynatrace-v2/README.md b/integrations/dynatrace-v2/README.md new file mode 100644 index 00000000..eb498d15 --- /dev/null +++ b/integrations/dynatrace-v2/README.md @@ -0,0 +1,9 @@ +# Dynatrace + +[User documentation](https://launchdarkly.com/docs/integrations/dynatrace) + +[API documentation](https://docs.dynatrace.com/docs/discover-dynatrace/references/dynatrace-api/environment-api/events-v2/post-event/) + +To set up a trigger, follow the instructions for a [Dynatrace webhook integration](https://www.dynatrace.com/support/help/setup-and-configuration/integrations/third-party-integrations/problem-notification-systems/webhook-integration/). + +Run `npm run curl dynatrace` in the root repository directory to generate a `curl` command to send data to Dynatrace. diff --git a/integrations/dynatrace-v2/assets/horizontal.svg b/integrations/dynatrace-v2/assets/horizontal.svg new file mode 100644 index 00000000..f36df202 --- /dev/null +++ b/integrations/dynatrace-v2/assets/horizontal.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/integrations/dynatrace-v2/assets/square.svg b/integrations/dynatrace-v2/assets/square.svg new file mode 100644 index 00000000..2bacc0b7 --- /dev/null +++ b/integrations/dynatrace-v2/assets/square.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/integrations/dynatrace-v2/manifest.json b/integrations/dynatrace-v2/manifest.json new file mode 100644 index 00000000..816703ac --- /dev/null +++ b/integrations/dynatrace-v2/manifest.json @@ -0,0 +1,175 @@ +{ + "name": "Dynatrace (V2 API)", + "version": "1.0.0", + "overview": "Monitor LaunchDarkly flag changes in Dynatrace.", + "description": "Monitor LaunchDarkly flag change events alongside your Dynatrace performance graphs. Correlate feature rollouts to changes in your system's operational health.", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://www.dynatrace.com/", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/dynatrace", + "privacyPolicy": "https://www.dynatrace.com/company/trust-center/privacy/" + }, + "categories": ["monitoring"], + "icons": { + "square": "assets/square.svg", + "horizontal": "assets/horizontal.svg" + }, + "formVariables": [ + { + "key": "apiToken", + "name": "Dynatrace Access token", + "type": "string", + "description": "Enter your Dynatrace Access token. [Learn more](https://www.dynatrace.com/support/help/shortlink/api-authentication#generate-a-token) about generating tokens. The 'Access problem and event feed, metrics, and topology' scope is required.", + "isSecret": true + }, + { + "key": "url", + "name": "Dynatrace URL", + "type": "uri", + "description": "Enter the URL used to access your Dynatrace (managed or hosted) service. Follow the pattern shown in the placeholder text.", + "placeholder": "https://{your-environment-id}.live.dynatrace.com", + "isSecret": false + }, + { + "key": "entity", + "name": "Dynatrace entity", + "type": "enum", + "description": "Select the Dynatrace entity `meType` to associate with all events.", + "defaultValue": "APPLICATION", + "isOptional": true, + "allowedValues": [ + "APPLICATION", + "APPLICATION_METHOD", + "APPLICATION_METHOD_GROUP", + "AUTO_SCALING_GROUP", + "AUXILIARY_SYNTHETIC_TEST", + "AWS_APPLICATION_LOAD_BALANCER", + "AWS_AVAILABILITY_ZONE", + "AWS_CREDENTIALS", + "AWS_LAMBDA_FUNCTION", + "AWS_NETWORK_LOAD_BALANCER", + "AZURE_API_MANAGEMENT_SERVICE", + "AZURE_APPLICATION_GATEWAY", + "AZURE_COSMOS_DB", + "AZURE_CREDENTIALS", + "AZURE_EVENT_HUB", + "AZURE_EVENT_HUB_NAMESPACE", + "AZURE_FUNCTION_APP", + "AZURE_IOT_HUB", + "AZURE_LOAD_BALANCER", + "AZURE_MGMT_GROUP", + "AZURE_REDIS_CACHE", + "AZURE_REGION", + "AZURE_SERVICE_BUS_NAMESPACE", + "AZURE_SERVICE_BUS_QUEUE", + "AZURE_SERVICE_BUS_TOPIC", + "AZURE_SQL_DATABASE", + "AZURE_SQL_ELASTIC_POOL", + "AZURE_SQL_SERVER", + "AZURE_STORAGE_ACCOUNT", + "AZURE_SUBSCRIPTION", + "AZURE_TENANT", + "AZURE_VM", + "AZURE_VM_SCALE_SET", + "AZURE_WEB_APP", + "CF_APPLICATION", + "CF_FOUNDATION", + "CINDER_VOLUME", + "CLOUD_APPLICATION", + "CLOUD_APPLICATION_INSTANCE", + "CLOUD_APPLICATION_NAMESPACE", + "CONTAINER_GROUP", + "CONTAINER_GROUP_INSTANCE", + "CUSTOM_APPLICATION", + "CUSTOM_DEVICE", + "CUSTOM_DEVICE_GROUP", + "DCRUM_APPLICATION", + "DCRUM_SERVICE", + "DCRUM_SERVICE_INSTANCE", + "DEVICE_APPLICATION_METHOD", + "DISK", + "DOCKER_CONTAINER_GROUP_INSTANCE", + "DYNAMO_DB_TABLE", + "EBS_VOLUME", + "EC2_INSTANCE", + "ELASTIC_LOAD_BALANCER", + "ENVIRONMENT", + "EXTERNAL_SYNTHETIC_TEST_STEP", + "GCP_ZONE", + "GEOLOCATION", + "GEOLOC_SITE", + "GOOGLE_COMPUTE_ENGINE", + "HOST", + "HOST_GROUP", + "HTTP_CHECK", + "HTTP_CHECK_STEP", + "HYPERVISOR", + "KUBERNETES_CLUSTER", + "KUBERNETES_NODE", + "MOBILE_APPLICATION", + "NETWORK_INTERFACE", + "NEUTRON_SUBNET", + "OPENSTACK_PROJECT", + "OPENSTACK_REGION", + "OPENSTACK_VM", + "OS", + "PROCESS_GROUP", + "PROCESS_GROUP_INSTANCE", + "RELATIONAL_DATABASE_SERVICE", + "SERVICE", + "SERVICE_INSTANCE", + "SERVICE_METHOD", + "SERVICE_METHOD_GROUP", + "SWIFT_CONTAINER", + "SYNTHETIC_LOCATION", + "SYNTHETIC_TEST", + "SYNTHETIC_TEST_STEP", + "VIRTUALMACHINE", + "VMWARE_DATACENTER" + ] + }, + { + "name": "Dynatrace tag", + "key": "tag", + "type": "string", + "isOptional": true, + "defaultValue": "", + "description": "If provided, all feature flag events matching the policy filter will be associated with Dynatrace entities with the same tag." + } + ], + "capabilities": { + "reservedCustomProperties": [ + { + "name": "Dynatrace tags (V2 API)", + "key": "dynatrace-v2" + } + ], + "auditLogEventsHook": { + "endpoint": { + "url": "{{url}}/api/v2/events/ingest", + "method": "POST", + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + }, + { + "name": "Authorization", + "value": "Api-Token {{apiToken}}" + } + ] + }, + "templates": { + "flag": "templates/flag.json.hbs" + }, + "defaultPolicy": [ + { + "effect": "allow", + "resources": ["proj/*:env/production:flag/*"], + "actions": ["*"] + } + ] + } + } +} diff --git a/integrations/dynatrace-v2/templates/flag.json.hbs b/integrations/dynatrace-v2/templates/flag.json.hbs new file mode 100644 index 00000000..2d7e0396 --- /dev/null +++ b/integrations/dynatrace-v2/templates/flag.json.hbs @@ -0,0 +1,28 @@ +{ + "eventType": "CUSTOM_CONFIGURATION", + "entitySelector": "type({{#if formVariables.entity}}{{formVariables.entity}}{{else}}APPLICATION{{/if}}),tag( + {{~#if customProperties}}{{#if customProperties.dynatrace-v2}}{{#if customProperties.dynatrace-v2.values~}} + {{~#with customProperties~}} + {{~#each dynatrace-v2.values~}} + \"{{this}}\"{{~#if formVariables.tag}},{{else}}{{#unless @last}},{{/unless}}{{/if}} + {{~/each~}} + {{~/with~}} + {{~/if}}{{/if}}{{/if~}} + {{~#if formVariables.tag~}} + \"{{formVariables.tag}}\" + {{~/if~}})", + "properties": { + "Flag name": "{{name}}", + "Flag key": "{{key}}", + "Project name": "{{project.name}}", + "Project key": "{{project.key}}", + "Environment name": "{{project.environment.name}}", + "Environment key": "{{project.environment.key}}", + "Comment": "{{#if comment}}{{comment}}{{/if}}", + "User name": "{{member.displayName}}", + "User email": "{{ member.email }}", + "Action": "{{verbKind}}" + }, + "startTime": {{ timestamp.milliseconds }}, + "title": "{{{title.plainText}}}" +} diff --git a/integrations/dynatrace/README.md b/integrations/dynatrace/README.md index 09a8f6b1..3d439405 100644 --- a/integrations/dynatrace/README.md +++ b/integrations/dynatrace/README.md @@ -1,6 +1,6 @@ # Dynatrace -[User documentation](https://docs.launchdarkly.com/integrations/dynatrace) +[User documentation](https://launchdarkly.com/docs/integrations/dynatrace) [API documentation](https://www.dynatrace.com/support/help/extend-dynatrace/dynatrace-api/environment-api/events/post-event/) diff --git a/integrations/dynatrace/manifest.json b/integrations/dynatrace/manifest.json index 5af61b9b..6c5ce309 100644 --- a/integrations/dynatrace/manifest.json +++ b/integrations/dynatrace/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.dynatrace.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/dynatrace", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/dynatrace", "privacyPolicy": "https://www.dynatrace.com/company/trust-center/privacy/" }, "categories": ["monitoring"], @@ -172,7 +172,7 @@ ] }, "trigger": { - "documentation": "https://docs.launchdarkly.com/integrations/dynatrace/triggers#connecting-a-launchdarkly-trigger-to-dynatrace", + "documentation": "https://launchdarkly.com/docs/integrations/dynatrace/triggers#connect-a-launchdarkly-trigger-to-dynatrace", "testEventNameRegexp": "^Dynatrace problem notification test run$", "parser": { "eventName": "/title", diff --git a/integrations/elastic/README.md b/integrations/elastic/README.md index 9a68fe4a..cbae9a0c 100644 --- a/integrations/elastic/README.md +++ b/integrations/elastic/README.md @@ -1,6 +1,6 @@ # The Elastic (ELK) Stack integration -Documentation for this integration is available on the LaunchDarkly documentation site: [ELK Stack](https://docs.launchdarkly.com/integrations/elastic-stack) +Documentation for this integration is available on the LaunchDarkly documentation site: [ELK Stack](https://launchdarkly.com/docs/integrations/elastic-stack) API documentation for this integration is available on the Elastic documentation site: [Elastic Search](https://www.elastic.co/guide/en/elasticsearch/reference/current/rest-apis.html) diff --git a/integrations/elastic/manifest.json b/integrations/elastic/manifest.json index c5a97aba..45da59b1 100644 --- a/integrations/elastic/manifest.json +++ b/integrations/elastic/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://elastic.co", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/elastic-stack", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/elastic-stack", "privacyPolicy": "https://www.elastic.co/legal/privacy-statement" }, "categories": ["monitoring", "notifications"], diff --git a/integrations/example-synced-segment-integration1/manifest.json b/integrations/example-synced-segment-integration1/manifest.json index c9009b9e..ad8d6a3f 100644 --- a/integrations/example-synced-segment-integration1/manifest.json +++ b/integrations/example-synced-segment-integration1/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.example.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/contexts/synced-segments", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/synced-segments", "privacyPolicy": "https://launchdarkly.com/policies/privacy" }, "categories": ["synced-segments"], diff --git a/integrations/example-synced-segment-integration2/manifest.json b/integrations/example-synced-segment-integration2/manifest.json index aadf8a22..95e1431c 100644 --- a/integrations/example-synced-segment-integration2/manifest.json +++ b/integrations/example-synced-segment-integration2/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.example.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/contexts/synced-segments", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/synced-segments", "privacyPolicy": "https://launchdarkly.com/policies/privacy" }, "categories": ["synced-segments"], diff --git a/integrations/fastly/assets/horizontal.svg b/integrations/fastly/assets/horizontal.svg new file mode 100644 index 00000000..ea959cb6 --- /dev/null +++ b/integrations/fastly/assets/horizontal.svg @@ -0,0 +1 @@ + diff --git a/integrations/fastly/assets/square.svg b/integrations/fastly/assets/square.svg new file mode 100644 index 00000000..1df2a51a --- /dev/null +++ b/integrations/fastly/assets/square.svg @@ -0,0 +1 @@ + diff --git a/integrations/fastly/manifest.json b/integrations/fastly/manifest.json new file mode 100644 index 00000000..15ca2f68 --- /dev/null +++ b/integrations/fastly/manifest.json @@ -0,0 +1,56 @@ +{ + "name": "Fastly", + "version": "1.0.0", + "overview": "Evaluate feature flags and bootstrap the LaunchDarkly Javascript SDK from Fastly Compute.", + "description": "Evaluate feature flags and bootstrap the LaunchDarkly Javascript SDK from Fastly Workers by storing flag data in Fastly's KV offering.", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://www.fastly.com/", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/fastly", + "privacyPolicy": "https://www.fastly.com/privacy" + }, + "categories": ["infrastructure"], + "icons": { + "square": "assets/square.svg", + "horizontal": "assets/horizontal.svg" + }, + "capabilities": { + "featureStore": { + "formVariables": [ + { + "key": "storeId", + "name": "KV Store ID", + "description": "The ID of the KV store to use for flag data.", + "type": "string", + "placeholder": "e.g. e6379ca0-17c2-4f58-bb8d-06ea232b01b5", + "isSecret": false + }, + { + "key": "apiToken", + "name": "API Token", + "description": "Enter a Fastly API token with Engineer permissions. Instructions for generating a [Fastly API token](https://www.fastly.com/documentation/reference/api/auth-tokens).", + "placeholder": "e.g. 8M7wS6hCpXVc-DoRnPPY_UCWPgy8aea4Wy6kCe5T", + "type": "string", + "isSecret": true + } + ], + "featureStoreRequest": { + "endpoint": { + "url": "https://api.fastly.com/resources/stores/kv/{{storeId}}/keys/{{_featureStoreKey}}", + "method": "PUT", + "headers": [ + { + "name": "Fastly-Key", + "value": "{{apiToken}}" + }, + { + "name": "Content-Type", + "value": "text/plain" + } + ] + } + } + } + } +} diff --git a/integrations/fulcrum/manifest.json b/integrations/fulcrum/manifest.json index c194c3cb..bdd522a4 100644 --- a/integrations/fulcrum/manifest.json +++ b/integrations/fulcrum/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.getfulcrum.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/fulcrum", + "launchdarklyDocs": "https://launchdarkly.com/docs", "privacyPolicy": "https://launchdarkly.com/policies/privacy/", "supportWebsite": "https://docs.getfulcrum.io/guides/fulcrum-launchdarkly-sync" }, diff --git a/integrations/fullstory/manifest.json b/integrations/fullstory/manifest.json index d133600f..07ecc7e7 100644 --- a/integrations/fullstory/manifest.json +++ b/integrations/fullstory/manifest.json @@ -8,7 +8,7 @@ "links": { "supportWebsite": "https://help.fullstory.com/", "site": "https://www.fullstory.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/fullstory", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/fullstory", "privacyPolicy": "https://www.fullstory.com/legal/privacy-policy/" }, "categories": ["analytics"], diff --git a/integrations/generic-feature-store/manifest.json b/integrations/generic-feature-store/manifest.json index 114c3b92..cc25e775 100644 --- a/integrations/generic-feature-store/manifest.json +++ b/integrations/generic-feature-store/manifest.json @@ -6,8 +6,8 @@ "author": "LaunchDarkly", "supportEmail": "support@launchdarkly.com", "links": { - "site": "https://docs.launchdarkly.com", - "privacyPolicy": "https://docs.launchdarkly.com" + "site": "https://launchdarkly.com/docs", + "privacyPolicy": "https://launchdarkly.com/docs" }, "categories": ["infrastructure"], "icons": { diff --git a/integrations/generic-trigger/README.md b/integrations/generic-trigger/README.md index 50534944..6e8ad924 100644 --- a/integrations/generic-trigger/README.md +++ b/integrations/generic-trigger/README.md @@ -2,4 +2,4 @@ This integration allows *any* tool with outbound webhook capabilities to use LaunchDarkly's flag triggers feature. -To learn more, read [Creating a new flag trigger](https://docs.launchdarkly.com/home/feature-workflows/triggers#creating-a-new-flag-trigger). +To learn more, read [Creating flag triggers](https://launchdarkly.com/docs/home/releases/triggers-create). diff --git a/integrations/generic-trigger/manifest.json b/integrations/generic-trigger/manifest.json index f3d80881..83ff461a 100644 --- a/integrations/generic-trigger/manifest.json +++ b/integrations/generic-trigger/manifest.json @@ -7,7 +7,7 @@ "author": "LaunchDarkly", "supportEmail": "support@launchdarkly.com", "links": { - "launchdarklyDocs": "https://docs.launchdarkly.com/home/feature-workflows/triggers", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/releases/triggers", "site": "https://launchdarkly.com", "privacyPolicy": "https://launchdarkly.com/policies/privacy" }, @@ -18,7 +18,7 @@ }, "capabilities": { "trigger": { - "documentation": "https://docs.launchdarkly.com/home/feature-workflows/triggers#creating-a-new-flag-trigger", + "documentation": "https://launchdarkly.com/docs/home/releases/triggers-create", "defaultEventName": "An event", "parser": { "eventName": "/eventName", diff --git a/integrations/git/manifest.json b/integrations/git/manifest.json index b95ec0a9..b1cb0f93 100644 --- a/integrations/git/manifest.json +++ b/integrations/git/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://github.com/launchdarkly/ld-find-code-refs/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/code/code-references", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/observability/code-references", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["code-references"], diff --git a/integrations/gitar/LICENSE.md b/integrations/gitar/LICENSE.md new file mode 100644 index 00000000..9826bf24 --- /dev/null +++ b/integrations/gitar/LICENSE.md @@ -0,0 +1,13 @@ +Copyright 2025 Catamorphic Co. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/integrations/gitar/assets/images/horizontal.svg b/integrations/gitar/assets/images/horizontal.svg new file mode 100644 index 00000000..fd8d7781 --- /dev/null +++ b/integrations/gitar/assets/images/horizontal.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/integrations/gitar/assets/images/square.svg b/integrations/gitar/assets/images/square.svg new file mode 100644 index 00000000..b3c7dcb6 --- /dev/null +++ b/integrations/gitar/assets/images/square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/integrations/gitar/manifest.json b/integrations/gitar/manifest.json new file mode 100644 index 00000000..f8b74f56 --- /dev/null +++ b/integrations/gitar/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "Gitar", + "version": "1.0.0", + "overview": "Use the Gitar GitHub App in order to automatically clean up LaunchDarkly flags in your code.", + "description": "Use the Gitar GitHub App in order to automatically clean up LaunchDarkly flags in your code", + "details": "Use the Gitar GitHub App in order to automatically clean up LaunchDarkly flags in your code", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://gitar.ai", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/observability/code-cleanup", + "privacyPolicy": "https://launchdarkly.com/policies/privacy/" + }, + "categories": ["automation", "code-references", "developer-tools"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/square.svg" + }, + "capabilities": { + "flagCleanup": {} + }, + "formVariables": [ + { + "name": "Gitar API key", + "key": "gitarToken", + "type": "string", + "isSecret": true, + "description": "The API key for your Gitar account", + "isOptional": false + }, + { + "name": "GitHub organization name", + "key": "githubOrgName", + "type": "string", + "isSecret": false, + "description": "The name of the GitHub organization you want to clean up", + "isOptional": false + } + ], + "allowIntegrationConfigurations": true +} diff --git a/integrations/github-actions-flag-evaluations/manifest.json b/integrations/github-actions-flag-evaluations/manifest.json index f001f2e6..b51ea7c9 100644 --- a/integrations/github-actions-flag-evaluations/manifest.json +++ b/integrations/github-actions-flag-evaluations/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://github.com/features/actions", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/github-actions-flag-evaluations", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/github-actions/flag-evaluations", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["automation"], diff --git a/integrations/github/manifest.json b/integrations/github/manifest.json index f92c7c7d..60c6414e 100644 --- a/integrations/github/manifest.json +++ b/integrations/github/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://github.com/features/actions", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/code/github-actions", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/github-actions", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["code-references"], @@ -25,7 +25,7 @@ "header": "GitHub pull request", "emptyState": { "title": "No GitHub pull requests link to this flag.", - "leadText": "To enable the GitHub integration, [read the documentation](https://docs.launchdarkly.com/integrations/github-actions/find-code-references)" + "leadText": "To enable the GitHub integration, [read the documentation](https://launchdarkly.com/docs/integrations/github-actions/find-code-references)" }, "metadata": { "avatarUrl": { diff --git a/integrations/gitlab/manifest.json b/integrations/gitlab/manifest.json index 43a51b50..b60b101d 100644 --- a/integrations/gitlab/manifest.json +++ b/integrations/gitlab/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://about.gitlab.com/stages-devops-lifecycle/continuous-integration/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/code/gitlab", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/observability/gitlab", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["code-references"], diff --git a/integrations/google-pubsub/manifest.json b/integrations/google-pubsub/manifest.json index 83c6e71b..9adb094b 100644 --- a/integrations/google-pubsub/manifest.json +++ b/integrations/google-pubsub/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://cloud.google.com/pubsub", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/data-export/google-pubsub", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export/google-pubsub", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], diff --git a/integrations/googleapps-sso/manifest.json b/integrations/googleapps-sso/manifest.json index 8b6ca8c0..98eeab0e 100644 --- a/integrations/googleapps-sso/manifest.json +++ b/integrations/googleapps-sso/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://cloud.google.com/identity/sso", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/account-security/google", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/account/google", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["authentication"], diff --git a/integrations/grafana/README.md b/integrations/grafana/README.md index 0503290d..70be3b9c 100644 --- a/integrations/grafana/README.md +++ b/integrations/grafana/README.md @@ -1,6 +1,6 @@ # Grafana -Documentation for this integration is available on the LaunchDarkly documentation site: [User documentation](https://docs.launchdarkly.com/integrations/grafana) +Documentation for this integration is available on the LaunchDarkly documentation site: [User documentation](https://launchdarkly.com/docs/integrations/grafana) API documentation for this integration is available on the Grafana documentation site: [API documentation](https://grafana.com/docs/grafana/latest/http_api/annotations/#create-annotation) diff --git a/integrations/grafana/manifest.json b/integrations/grafana/manifest.json index 9fd73a15..0d3df03a 100644 --- a/integrations/grafana/manifest.json +++ b/integrations/grafana/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://grafana.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/grafana", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/grafana", "privacyPolicy": "https://grafana.com/terms/" }, "categories": ["monitoring"], diff --git a/integrations/heap-inbound/manifest.json b/integrations/heap-inbound/manifest.json index 51ec1549..57a36314 100644 --- a/integrations/heap-inbound/manifest.json +++ b/integrations/heap-inbound/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@heap.io", "links": { "site": "https://www.heap.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/heap", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/heap", "privacyPolicy": "https://www.heap.io/privacy" }, "categories": ["synced-segments"], diff --git a/integrations/heap/manifest.json b/integrations/heap/manifest.json index 76a41654..8748e0bc 100644 --- a/integrations/heap/manifest.json +++ b/integrations/heap/manifest.json @@ -9,7 +9,7 @@ "links": { "supportWebsite": "https://help.heap.io/", "site": "https://heap.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/heap", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/heap", "privacyPolicy": "https://heap.io/privacy" }, "categories": ["analytics"], diff --git a/integrations/hightouch/manifest.json b/integrations/hightouch/manifest.json index 694023d2..75e74c1b 100644 --- a/integrations/hightouch/manifest.json +++ b/integrations/hightouch/manifest.json @@ -8,7 +8,7 @@ "links": { "site": "https://hightouch.com/", "privacyPolicy": "https://hightouch.com/privacy-policy", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/hightouch" + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/hightouch" }, "categories": ["synced-segments"], "icons": { diff --git a/integrations/honeycomb/README.md b/integrations/honeycomb/README.md index 55c4ac58..aa64e9f4 100644 --- a/integrations/honeycomb/README.md +++ b/integrations/honeycomb/README.md @@ -1,6 +1,6 @@ # Honeycomb -Documentation for this integration is available on the LaunchDarkly documentation site: [Honeycomb](https://docs.launchdarkly.com/integrations/honeycomb) +Documentation for this integration is available on the LaunchDarkly documentation site: [Honeycomb](https://launchdarkly.com/docs/integrations/honeycomb) API documentation for this integration is available on the Honeycomb documentation site: [Markers API](https://docs.honeycomb.io/api/markers/) diff --git a/integrations/honeycomb/manifest.json b/integrations/honeycomb/manifest.json index 6a8f3ab7..839deb1c 100644 --- a/integrations/honeycomb/manifest.json +++ b/integrations/honeycomb/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://honeycomb.io", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/honeycomb", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/honeycomb", "privacyPolicy": "https://honeycomb.io/privacy" }, "categories": ["monitoring"], @@ -62,7 +62,7 @@ ] }, "trigger": { - "documentation": "https://docs.launchdarkly.com/integrations/honeycomb/triggers#connecting-a-flag-trigger-to-honeycomb", + "documentation": "https://launchdarkly.com/docs/integrations/honeycomb/triggers#connect-a-flag-trigger-to-honeycomb", "parser": { "eventName": "/name", "url": "/result_url" diff --git a/integrations/intellij/manifest.json b/integrations/intellij/manifest.json index 805826f2..584bc805 100644 --- a/integrations/intellij/manifest.json +++ b/integrations/intellij/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://plugins.jetbrains.com/plugin/15159-launchdarkly", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/intellij", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/intellij", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["developer-tools"], diff --git a/integrations/jira/manifest.json b/integrations/jira/manifest.json index 4d77b22d..53b2c762 100644 --- a/integrations/jira/manifest.json +++ b/integrations/jira/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.atlassian.com/software/jira", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/jira", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/jira", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["issue-tracking"], @@ -22,7 +22,7 @@ "header": "Jira issue", "emptyState": { "title": "No Jira issues link to this flag.", - "leadText": "To enable the Jira integration, [read the documentation](https://docs.launchdarkly.com/home/flags/links#creating-jira-flag-links)" + "leadText": "To enable the Jira integration, [read the documentation](https://launchdarkly.com/docs/home/flags/links#create-jira-flag-links)" }, "metadata": { "creator": { diff --git a/integrations/kinesis/manifest.json b/integrations/kinesis/manifest.json index 914cbe89..43e7bf38 100644 --- a/integrations/kinesis/manifest.json +++ b/integrations/kinesis/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://aws.amazon.com/kinesis/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/data-export/kinesis", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export/kinesis", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], diff --git a/integrations/last9/manifest.json b/integrations/last9/manifest.json index e18f1df3..e1a6f27b 100644 --- a/integrations/last9/manifest.json +++ b/integrations/last9/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://last9.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/last9", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/last9", "privacyPolicy": "https://last9.io/privacy/" }, "categories": ["monitoring"], diff --git a/integrations/ld-to-git/manifest.json b/integrations/ld-to-git/manifest.json index 7a84866b..791983b4 100644 --- a/integrations/ld-to-git/manifest.json +++ b/integrations/ld-to-git/manifest.json @@ -6,7 +6,7 @@ "author": "LaunchDarkly", "supportEmail": "support@launchdarkly.com", "links": { - "site": "https://docs.launchdarkly.com/integrations", + "site": "https://launchdarkly.com/docs/integrations", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], @@ -26,7 +26,7 @@ { "key": "ldApiToken", "name": "LaunchDarkly API token", - "description": "Enter the API token generated from LaunchDarkly. Instructions for generating a LaunchDarkly API token can be found [here](https://docs.launchdarkly.com/home/account-security/api-access-tokens)", + "description": "Enter the API token generated from LaunchDarkly. Instructions for generating a LaunchDarkly API token can be found [here](https://launchdarkly.com/docs/home/account/api)", "type": "string", "isSecret": true, "isOptional": false diff --git a/integrations/logdna/README.md b/integrations/logdna/README.md index b8dabe25..a5ea5cf5 100644 --- a/integrations/logdna/README.md +++ b/integrations/logdna/README.md @@ -1,6 +1,6 @@ # LogDNA -User documentation for this integration is available on the LaunchDarkly documentation site: [LogDNA](https://docs.launchdarkly.com/integrations/logdna) +User documentation for this integration is available on the LaunchDarkly documentation site: [LogDNA](https://launchdarkly.com/docs/integrations/mezmo) API documentation for this integration is available on the LogDNA API documentation site: [LogDNA](https://docs.logdna.com/reference#api) diff --git a/integrations/logdna/manifest.json b/integrations/logdna/manifest.json index fa548fcd..0c3e03ce 100644 --- a/integrations/logdna/manifest.json +++ b/integrations/logdna/manifest.json @@ -6,8 +6,8 @@ "author": "LaunchDarkly", "supportEmail": "support@launchdarkly.com", "links": { - "site": "https://logdna.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/logdna", + "site": "https://www.mezmo.com/", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/mezmo", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["log-management"], diff --git a/integrations/mparticle/manifest.json b/integrations/mparticle/manifest.json index 5916c8c1..f1cc20d4 100644 --- a/integrations/mparticle/manifest.json +++ b/integrations/mparticle/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.mparticle.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/data-export/mparticle", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export/mparticle", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], diff --git a/integrations/msteams-app/manifest.json b/integrations/msteams-app/manifest.json index 53f37750..7e0c08a1 100644 --- a/integrations/msteams-app/manifest.json +++ b/integrations/msteams-app/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.microsoft.com/en-us/microsoft-teams/group-chat-software", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/microsoft-teams", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/microsoft-teams", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["messaging"], diff --git a/integrations/msteams/README.md b/integrations/msteams/README.md index 11491f39..9c3d9db0 100644 --- a/integrations/msteams/README.md +++ b/integrations/msteams/README.md @@ -1,6 +1,6 @@ # Microsoft Teams -User documentation for this integration is available on the LaunchDarkly documentation site: [Microsoft Teams](https://docs.launchdarkly.com/integrations/microsoft-teams) +User documentation for this integration is available on the LaunchDarkly documentation site: [Microsoft Teams](https://launchdarkly.com/docs/integrations/microsoft-teams) API documentation for this integration is available on Microsoft's documentation site: [Microsoft Teams](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using?tabs=cURL) diff --git a/integrations/msteams/manifest.json b/integrations/msteams/manifest.json index b2c92b3b..63be1e96 100644 --- a/integrations/msteams/manifest.json +++ b/integrations/msteams/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.microsoft.com/microsoft-365/microsoft-teams/group-chat-software", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/microsoft-teams/webhooks", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/microsoft-teams/webhooks", "privacyPolicy": "https://privacy.microsoft.com/en-us" }, "categories": ["messaging"], @@ -20,7 +20,7 @@ "key": "url", "name": "Incoming webhook URL", "type": "uri", - "description": "Enter your Microsoft Teams [incoming webhook URL](https://docs.launchdarkly.com/integrations/microsoft-teams/webhooks#setting-up-a-connector-in-microsoft-teams).", + "description": "Enter your Microsoft Teams [incoming webhook URL](https://launchdarkly.com/docs/integrations/microsoft-teams/webhooks#set-up-a-workflow-in-microsoft-teams).", "isSecret": false } ], diff --git a/integrations/netlify/manifest.json b/integrations/netlify/manifest.json index 8161492a..d0431038 100644 --- a/integrations/netlify/manifest.json +++ b/integrations/netlify/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@netlify.com", "links": { "site": "https://www.netlify.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/netlify", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/netlify", "privacyPolicy": "https://www.netlify.com/privacy/" }, "categories": ["infrastructure"], diff --git a/integrations/new-relic-apm-insights/README.md b/integrations/new-relic-apm-insights/README.md index 67bdfc57..149014c6 100644 --- a/integrations/new-relic-apm-insights/README.md +++ b/integrations/new-relic-apm-insights/README.md @@ -1,6 +1,6 @@ # New Relic -[User documentation](https://docs.launchdarkly.com/integrations/new-relic) +[User documentation](https://launchdarkly.com/docs/integrations/new-relic) [API documentation](https://docs.newrelic.com/docs/data-apis/ingest-apis/event-api/introduction-event-api/) diff --git a/integrations/new-relic-apm-insights/manifest.json b/integrations/new-relic-apm-insights/manifest.json index 238686be..d0af64c6 100644 --- a/integrations/new-relic-apm-insights/manifest.json +++ b/integrations/new-relic-apm-insights/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://newrelic.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/new-relic", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/new-relic", "privacyPolicy": "https://newrelic.com/termsandconditions/privacy" }, "categories": ["monitoring"], diff --git a/integrations/new-relic-apm/README.md b/integrations/new-relic-apm/README.md index 42c81ae8..76820d48 100644 --- a/integrations/new-relic-apm/README.md +++ b/integrations/new-relic-apm/README.md @@ -2,7 +2,7 @@ **Important:** This integration requires a New Relic APM account. -User documentation for this integration is available on the LaunchDarkly documentation site: [New Relic One](https://docs.launchdarkly.com/integrations/new-relic). +User documentation for this integration is available on the LaunchDarkly documentation site: [New Relic One](https://launchdarkly.com/docs/integrations/new-relic). API documentation for this integration is available on the New Relic API documentation site: [New Relic One](https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/record-monitor-deployments). diff --git a/integrations/new-relic-apm/manifest.json b/integrations/new-relic-apm/manifest.json index 6b1b0855..6f3216e8 100644 --- a/integrations/new-relic-apm/manifest.json +++ b/integrations/new-relic-apm/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://newrelic.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/new-relic", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/new-relic", "privacyPolicy": "https://newrelic.com/termsandconditions/privacy" }, "categories": ["monitoring"], @@ -69,7 +69,7 @@ ] }, "trigger": { - "documentation": "https://docs.launchdarkly.com/integrations/new-relic/triggers#connecting-a-flag-trigger-to-new-relic-one", + "documentation": "https://launchdarkly.com/docs/integrations/new-relic/triggers#connect-a-flag-trigger-to-new-relic-one", "testEventNameRegexp": "^New Relic Alert - Test Condition$", "parser": { "eventName": "/condition_name", diff --git a/integrations/new-relic/README.md b/integrations/new-relic/README.md index cd500da1..fb77856a 100644 --- a/integrations/new-relic/README.md +++ b/integrations/new-relic/README.md @@ -2,7 +2,7 @@ **Important:** This integration requires a New Relic Pro account, including a paid Insights subscription. -User documentation for this integration is available on the LaunchDarkly documentation site: [New Relic One](https://docs.launchdarkly.com/integrations/new-relic) +User documentation for this integration is available on the LaunchDarkly documentation site: [New Relic One](https://launchdarkly.com/docs/integrations/new-relic) API documentation for this integration is available at the New Relic documentation site: [New Relic](https://docs.newrelic.com/docs/insights/insights-data-sources/custom-data/introduction-event-api) diff --git a/integrations/new-relic/manifest.json b/integrations/new-relic/manifest.json index 9559c0d8..78bbedb2 100644 --- a/integrations/new-relic/manifest.json +++ b/integrations/new-relic/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://newrelic.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/new-relic", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/new-relic", "privacyPolicy": "https://newrelic.com/termsandconditions/privacy" }, "categories": ["monitoring"], diff --git a/integrations/okta/manifest.json b/integrations/okta/manifest.json index 28e2f901..b40cb3cf 100644 --- a/integrations/okta/manifest.json +++ b/integrations/okta/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.okta.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/account-security/okta", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/account/okta", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["authentication"], diff --git a/integrations/onelogin/manifest.json b/integrations/onelogin/manifest.json index 631763ab..0c76b2aa 100644 --- a/integrations/onelogin/manifest.json +++ b/integrations/onelogin/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.onelogin.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/account-security/onelogin", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/account/onelogin", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["authentication"], diff --git a/integrations/osano/manifest.json b/integrations/osano/manifest.json index bfbc4123..35eb1439 100644 --- a/integrations/osano/manifest.json +++ b/integrations/osano/manifest.json @@ -9,7 +9,7 @@ "links": { "supportWebsite": "https://docs.osano.com/", "site": "https://osano.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/osano", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/osano", "privacyPolicy": "https://www.osano.com/legal/privacy" }, "categories": ["data"], diff --git a/integrations/pagerduty-guardian-edition/manifest.json b/integrations/pagerduty-guardian-edition/manifest.json index f70c2313..08245d41 100644 --- a/integrations/pagerduty-guardian-edition/manifest.json +++ b/integrations/pagerduty-guardian-edition/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.pagerduty.com", - "launchdarklyDocs": "https://docs.launchdarkly.com", + "launchdarklyDocs": "https://launchdarkly.com/docs", "privacyPolicy": "https://www.pagerduty.com/privacy-policy/" }, "categories": ["monitoring"], diff --git a/integrations/pagerduty/manifest.json b/integrations/pagerduty/manifest.json index 38b43771..34bcefc7 100644 --- a/integrations/pagerduty/manifest.json +++ b/integrations/pagerduty/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.pagerduty.com", - "launchdarklyDocs": "https://docs.launchdarkly.com", + "launchdarklyDocs": "https://launchdarkly.com/docs", "privacyPolicy": "https://www.pagerduty.com/privacy-policy/" }, "categories": ["monitoring"], @@ -27,7 +27,7 @@ "capabilities": { "reservedCustomProperties": [ { - "name": "PagerDuy integration key override", + "name": "PagerDuty integration key override", "description": "The PagerDuty integration key to use for all changes associated with this flag. Only the first key will be used.", "key": "pagerDutyIntegrationKey" } diff --git a/integrations/pendo/manifest.json b/integrations/pendo/manifest.json index a086f30d..3046297e 100644 --- a/integrations/pendo/manifest.json +++ b/integrations/pendo/manifest.json @@ -9,7 +9,7 @@ "links": { "supportWebsite": "https://support.pendo.io/hc/en-us/articles/360032592312-LaunchDarkly-Recipe-Automate-the-feature-release-process", "site": "https://www.pendo.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/pendo", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/pendo", "privacyPolicy": "https://www.pendo.io/legal/privacy-policy/" }, "categories": ["analytics"], diff --git a/integrations/port/manifest.json b/integrations/port/manifest.json index f56bac8d..b1f8b7c3 100644 --- a/integrations/port/manifest.json +++ b/integrations/port/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@getport.io", "links": { "site": "https://getport.io", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/port", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/port", "privacyPolicy": "https://www.getport.io/legal/privacy-policy" }, "categories": ["developer-tools", "infrastructure"], diff --git a/integrations/redis/manifest.json b/integrations/redis/manifest.json index f8753aec..c8a23a17 100644 --- a/integrations/redis/manifest.json +++ b/integrations/redis/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://redis.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/redis", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/redis", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["big-segment-store", "data", "synced-segments"], diff --git a/integrations/release/manifest.json b/integrations/release/manifest.json index ac3cd3bd..91390b1a 100644 --- a/integrations/release/manifest.json +++ b/integrations/release/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@releaseapp.io", "links": { "site": "https://releaseapp.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/release", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/release", "supportWebsite": "https://docs.releaseapp.io/integrations/integrations-overview/launchdarkly-integration", "privacyPolicy": "https://releaseapp.io/privacy-policy" }, diff --git a/integrations/resmo/manifest.json b/integrations/resmo/manifest.json index 412eb0cd..b704fee4 100644 --- a/integrations/resmo/manifest.json +++ b/integrations/resmo/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@resmo.com", "links": { "site": "https://www.resmo.com", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/resmo", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/resmo", "privacyPolicy": "https://www.resmo.com/legal/privacy" }, "categories": ["monitoring"], diff --git a/integrations/roadie/manifest.json b/integrations/roadie/manifest.json index 342e7ffa..0a6f806d 100644 --- a/integrations/roadie/manifest.json +++ b/integrations/roadie/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@roadie.io", "links": { "site": "https://roadie.io", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/roadie", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/backstage", "supportWebsite": "https://roadie.io/docs/integrations/launchdarkly/", "privacyPolicy": "https://roadie.io/legal-notices/privacy-notice/v1/" }, diff --git a/integrations/rudderstack/manifest.json b/integrations/rudderstack/manifest.json index 9916e6b7..e97c374a 100644 --- a/integrations/rudderstack/manifest.json +++ b/integrations/rudderstack/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.rudderstack.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/rudderstack", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/rudderstack", "supportWebsite": "https://www.rudderstack.com/docs/destinations/streaming-destinations/launchdarkly-segments/", "privacyPolicy": "https://launchdarkly.com/policies/privacy" }, diff --git a/integrations/segment-audiences/manifest.json b/integrations/segment-audiences/manifest.json index d6583011..93d2a073 100644 --- a/integrations/segment-audiences/manifest.json +++ b/integrations/segment-audiences/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://segment.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/segment", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/twilio", "supportWebsite": "https://segment.com/docs/connections/sources/catalog/cloud-apps/launchdarkly-audiences/", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, diff --git a/integrations/segment-inbound/manifest.json b/integrations/segment-inbound/manifest.json index 10229acd..8dfb2561 100644 --- a/integrations/segment-inbound/manifest.json +++ b/integrations/segment-inbound/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://segment.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/creating-experiments/segment/", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/metric-segment", "supportWebsite": "https://segment.com/docs/connections/destinations/catalog/actions-launchdarkly/", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, diff --git a/integrations/segment/manifest.json b/integrations/segment/manifest.json index 1bb9dada..30a95e82 100644 --- a/integrations/segment/manifest.json +++ b/integrations/segment/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://segment.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/data-export/segment", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export/segment", "supportWebsite": "https://segment.com/docs/connections/sources/catalog/cloud-apps/launchdarkly/", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, diff --git a/integrations/sentry/manifest.json b/integrations/sentry/manifest.json index 691a8a2f..82cc065a 100644 --- a/integrations/sentry/manifest.json +++ b/integrations/sentry/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.sentry.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/sentry", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/sentry", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], diff --git a/integrations/servicenow-app/assets/images/servicenow-horizontal.svg b/integrations/servicenow-app/assets/images/servicenow-horizontal.svg new file mode 100644 index 00000000..4c76a79d --- /dev/null +++ b/integrations/servicenow-app/assets/images/servicenow-horizontal.svg @@ -0,0 +1 @@ + diff --git a/integrations/servicenow-app/assets/images/servicenow-icon.svg b/integrations/servicenow-app/assets/images/servicenow-icon.svg new file mode 100644 index 00000000..f676f2c1 --- /dev/null +++ b/integrations/servicenow-app/assets/images/servicenow-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/integrations/servicenow-app/manifest.json b/integrations/servicenow-app/manifest.json new file mode 100644 index 00000000..ef850c97 --- /dev/null +++ b/integrations/servicenow-app/manifest.json @@ -0,0 +1,106 @@ +{ + "name": "ServiceNow Native App", + "version": "1.0.0", + "overview": "Create feature flag change requests in ServiceNow.", + "description": "Efficiently comply with company-wide change management policies by embedding LaunchDarkly approvals into existing ServiceNow workflows.", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://www.servicenow.com/", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/servicenow", + "privacyPolicy": "https://www.servicenow.com/privacy-statement.html" + }, + "categories": ["approval"], + "icons": { + "square": "assets/images/servicenow-icon.svg", + "horizontal": "assets/images/servicenow-horizontal.svg" + }, + "requiresOAuth": true, + "formVariables": [], + "allowIntegrationConfigurations": true, + "oauthIntegrationKey": "servicenow", + "capabilities": { + "approval": { + "name": "ServiceNow", + "allowApprovalIntegrationConfigurations": true, + "allowAdditionalApprovalFormVariables": true, + "environmentFormVariables": [], + "approvalFormVariables": [], + "creationRequest": { + "endpoint": { + "url": "{{oauth.baseURI}}/api/x_1551791_launch_0/approval_requests", + "method": "POST", + "headers": [ + { + "name": "Authorization", + "value": "Bearer {{oauth.accessToken}}" + } + ] + }, + "jsonBody": "{\"approval_id\": \"{{approvalId}}\", \"title\": \"{{{title.plainText}}}\", \"description\": \"{{_links.approval.href}}\\n\\n{{{details.plainText}}}\", \"requested_by\": \"{{{member.email}}}\", \"start_date\": \"{{timestamp.simple}}\", \"end_date\": \"{{formatWithOffset timestamp.milliseconds 301 'simple'}}\", \"approval_form_variables\": { {{#each approvalFormVariables}} \"{{@key}}\": \"{{this}}\"{{#if @last}}{{else}},{{/if}}{{/each}} } }", + "parser": { + "approvalId": "/result/record", + "statusValue": "/result/status/value", + "statusDisplay": "/result/status/display_value", + "approvalMatcher": "^approved$", + "rejectionMatcher": "^rejected$", + "urlTemplate": "{{oauth.baseURI}}/api/x_1551791_launch_0/approval_requests/redirect?id={{queryEncode context.approvalId}}" + } + }, + "statusRequest": { + "endpoint": { + "url": "{{oauth.baseURI}}/api/x_1551791_launch_0/approval_requests/{{context.approvalId}}", + "method": "GET", + "headers": [ + { + "name": "Authorization", + "value": "Bearer {{oauth.accessToken}}" + } + ] + }, + "parser": { + "statusValue": "/result/status/value", + "statusDisplay": "/result/status/display_value", + "approvalMatcher": "^approved$", + "rejectionMatcher": "^rejected$" + } + }, + "postApplyRequest": { + "endpoint": { + "url": "{{oauth.baseURI}}/api/x_1551791_launch_0/approval_requests/{{context.approvalId}}/apply", + "method": "POST", + "headers": [ + { + "name": "Authorization", + "value": "Bearer {{oauth.accessToken}}" + } + ] + }, + "parser": { + "statusValue": "/result/status/value", + "statusDisplay": "/result/status/display_value", + "approvalMatcher": "^approved$", + "rejectionMatcher": "^rejected$" + } + }, + "deletionRequest": { + "endpoint": { + "url": "{{oauth.baseURI}}/api/x_1551791_launch_0/approval_requests/{{context.approvalId}}/delete", + "method": "POST", + "headers": [ + { + "name": "Authorization", + "value": "Bearer {{oauth.accessToken}}" + } + ] + }, + "parser": { + "statusValue": "/result/status/value", + "statusDisplay": "/result/status/display_value", + "approvalMatcher": "^approved$", + "rejectionMatcher": "^rejected$" + } + } + } + } +} diff --git a/integrations/servicenow-c0/manifest.json b/integrations/servicenow-c0/manifest.json index 52ffc121..8dffb20c 100644 --- a/integrations/servicenow-c0/manifest.json +++ b/integrations/servicenow-c0/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.servicenow.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/servicenow", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/servicenow", "privacyPolicy": "https://www.servicenow.com/privacy-statement.html" }, "categories": ["approval"], @@ -32,7 +32,7 @@ { "key": "assignmentGroup", "name": "ServiceNow assignment group override (Disabled)", - "description": "This request will fail if you have not specified the \"ServiceNow assignment group\" custom property. Read [Custom Properties](https://docs.launchdarkly.com/home/infrastructure/custom-properties) for more information.", + "description": "This request will fail if you have not specified the \"ServiceNow assignment group\" custom property. Read [Custom Properties](https://launchdarkly.com/docs/home/infrastructure/custom-properties) for more information.", "type": "enum", "allowedValues": ["Override disabled"], "isOptional": true diff --git a/integrations/servicenow-normal/manifest.json b/integrations/servicenow-normal/manifest.json index f224abf1..6014ba1d 100644 --- a/integrations/servicenow-normal/manifest.json +++ b/integrations/servicenow-normal/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.servicenow.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/servicenow", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/servicenow", "privacyPolicy": "https://www.servicenow.com/privacy-statement.html" }, "categories": ["approval"], @@ -91,6 +91,14 @@ "type": "boolean", "defaultValue": false, "isOptional": true + }, + { + "key": "doNotSetDates", + "name": "Do not populate change window", + "description": "If unchecked, LaunchDarkly will automatically populate the change window on the ServiceNow Change Request.", + "type": "boolean", + "defaultValue": false, + "isOptional": true } ], "creationRequest": { @@ -104,7 +112,7 @@ } ] }, - "jsonBody": "{\"short_description\": \"{{{title.plainText}}}\", {{#if approvalFormVariables.implementationPlan}}\"implementation_plan\": \"{{{approvalFormVariables.implementationPlan}}}\",{{/if}} {{#if approvalFormVariables.configurationItem}}\"cmdb_ci\": \"{{{approvalFormVariables.configurationItem}}}\",{{/if}} \"{{#if environmentFormVariables.detail_column}}{{environmentFormVariables.detail_column}}{{else}}justification{{/if}}\": \"{{_links.approval.href}}\\n\\n{{{details.plainText}}}\", \"requested_by\": \"{{{member.externalId}}}\", \"start_date\": \"{{timestamp.simple}}\", \"end_date\": \"{{formatWithOffset timestamp.milliseconds 301 'simple'}}\"}", + "jsonBody": "{\"short_description\": \"{{{title.plainText}}}\", {{#if approvalFormVariables.implementationPlan}}\"implementation_plan\": \"{{{approvalFormVariables.implementationPlan}}}\",{{/if}} {{#if approvalFormVariables.configurationItem}}\"cmdb_ci\": \"{{{approvalFormVariables.configurationItem}}}\",{{/if}} \"{{#if environmentFormVariables.detail_column}}{{environmentFormVariables.detail_column}}{{else}}justification{{/if}}\": \"{{_links.approval.href}}\\n\\n{{{details.plainText}}}\", \"requested_by\": \"{{{member.externalId}}}\" {{#unless environmentFormVariables.doNotSetDates}}, \"start_date\": \"{{timestamp.simple}}\", \"end_date\": \"{{formatWithOffset timestamp.milliseconds 301 'simple'}}\"{{/unless}} }", "parser": { "approvalId": "/result/sys_id/value", "statusValue": "/result/state/value", diff --git a/integrations/servicenow/manifest.json b/integrations/servicenow/manifest.json index 25b50b72..fdbe5a1f 100644 --- a/integrations/servicenow/manifest.json +++ b/integrations/servicenow/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.servicenow.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/servicenow", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/servicenow", "privacyPolicy": "https://www.servicenow.com/privacy-statement.html" }, "categories": ["approval"], diff --git a/integrations/signalfx/README.md b/integrations/signalfx/README.md index 4164aeee..02e2c223 100644 --- a/integrations/signalfx/README.md +++ b/integrations/signalfx/README.md @@ -1,6 +1,6 @@ # Splunk Observability Cloud (formerly SignalFx) -User documentation for this integration is available on the LaunchDarkly documentation site: [Splunk Observability Cloud](https://docs.launchdarkly.com/integrations/splunk-observability) +User documentation for this integration is available on the LaunchDarkly documentation site: [Splunk Observability Cloud](https://launchdarkly.com/docs/integrations/splunk-observability) API documentation for this integration is available on the Splunk Observability Cloud documentation site: [Splunk Observability Cloud](https://dev.splunk.com/observability/reference/api/ingest_data/latest) diff --git a/integrations/signalfx/manifest.json b/integrations/signalfx/manifest.json index e4fcfea6..7ae6d8c4 100644 --- a/integrations/signalfx/manifest.json +++ b/integrations/signalfx/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.splunk.com/en_us/products/observability.html", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/splunk-observability", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/splunk-observability", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["monitoring"], @@ -60,7 +60,7 @@ ] }, "trigger": { - "documentation": "https://docs.launchdarkly.com/integrations/splunk-observability/triggers#connecting-a-flag-trigger-to-splunk-observability-cloud", + "documentation": "https://launchdarkly.com/docs/integrations/splunk-observability/triggers#connect-a-flag-trigger-to-splunk-observability-cloud", "parser": { "eventName": "/eventType", "url": "/detectorUrl" diff --git a/integrations/slack-app/manifest.json b/integrations/slack-app/manifest.json index 80556632..8730cac2 100644 --- a/integrations/slack-app/manifest.json +++ b/integrations/slack-app/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://slack.com/apps/AKEEF9DTM-launchdarkly", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/slack", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/slack", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["messaging"], @@ -24,7 +24,7 @@ "header": "Slack conversation", "emptyState": { "title": "No Slack conversations link to this flag.", - "leadText": "To enable the Slack integration, [read the documentation](https://docs.launchdarkly.com/home/flags/links#creating-slack-flag-links)" + "leadText": "To enable the Slack integration, [read the documentation](https://launchdarkly.com/docs/home/flags/links#create-slack-flag-links)" }, "metadata": { "avatarUrl": { diff --git a/integrations/slack-webhooks/manifest.json b/integrations/slack-webhooks/manifest.json index f6d522cc..779e811a 100644 --- a/integrations/slack-webhooks/manifest.json +++ b/integrations/slack-webhooks/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://api.slack.com/messaging/webhooks", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/slack/webhooks", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/slack/webhooks", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["notifications"], diff --git a/integrations/sleuth/manifest.json b/integrations/sleuth/manifest.json index 7fdac695..60656954 100644 --- a/integrations/sleuth/manifest.json +++ b/integrations/sleuth/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@sleuth.io", "links": { "site": "https://www.sleuth.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/sleuth", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/sleuth", "supportWebsite": "https://help.sleuth.io/integrations/launchdarkly", "privacyPolicy": "https://www.sleuth.io/privacy" }, diff --git a/integrations/snowflake-experimentation/manifest.json b/integrations/snowflake-experimentation/manifest.json index c8b09a5e..f4d0fa28 100644 --- a/integrations/snowflake-experimentation/manifest.json +++ b/integrations/snowflake-experimentation/manifest.json @@ -8,7 +8,7 @@ "allowIntegrationConfigurations": true, "links": { "site": "https://www.snowflake.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/TODO", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/warehouse-native/snowflake", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], @@ -39,7 +39,7 @@ "key": "publicKey", "name": "Public key", "description": "Copy this key into the Snowflake LaunchDarkly Experimentation app in step 4", - "type": "generated", + "type": "publicKey", "hideEmpty": true, "defaultValue": "", "isOptional": true diff --git a/integrations/snowflake-native-product-analytics/assets/images/horizontal.svg b/integrations/snowflake-native-product-analytics/assets/images/horizontal.svg new file mode 100644 index 00000000..5b792631 --- /dev/null +++ b/integrations/snowflake-native-product-analytics/assets/images/horizontal.svg @@ -0,0 +1,27 @@ + + logo-blue-svg + + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/snowflake-native-product-analytics/assets/images/square.svg b/integrations/snowflake-native-product-analytics/assets/images/square.svg new file mode 100644 index 00000000..70bb8a73 --- /dev/null +++ b/integrations/snowflake-native-product-analytics/assets/images/square.svg @@ -0,0 +1 @@ + diff --git a/integrations/snowflake-native-product-analytics/manifest.json b/integrations/snowflake-native-product-analytics/manifest.json new file mode 100644 index 00000000..332f5b0d --- /dev/null +++ b/integrations/snowflake-native-product-analytics/manifest.json @@ -0,0 +1,22 @@ +{ + "name": "Snowflake Native Product Analytics", + "version": "1.0.0", + "overview": "Run product analytics in LaunchDarkly using Snowflake warehouse data to power your insights.", + "description": "LaunchDarkly Product Analytics helps you understand how users interact with your features—so you can make data-driven decisions that boost adoption and engagement. By connecting your Snowflake data, you get powerful, warehouse-native analytics without moving data out of your stack.", + "author": "Snowflake", + "supportEmail": "support@launchdarkly.com", + "links": { + "site": "https://www.snowflake.com", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/product-analytics", + "privacyPolicy": "https://launchdarkly.com/policies/privacy" + }, + "categories": ["data"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "capabilities": { + "internalConfigurationURL": "product-analytics/integrations/snowflake" + }, + "requiresOAuth": false +} diff --git a/integrations/snowflake-v2/assets/images/horizontal.svg b/integrations/snowflake-v2/assets/images/horizontal.svg new file mode 100644 index 00000000..5b792631 --- /dev/null +++ b/integrations/snowflake-v2/assets/images/horizontal.svg @@ -0,0 +1,27 @@ + + logo-blue-svg + + + + + + + + + + + + + + + + + + + + + + diff --git a/integrations/snowflake-v2/assets/images/square.svg b/integrations/snowflake-v2/assets/images/square.svg new file mode 100644 index 00000000..70bb8a73 --- /dev/null +++ b/integrations/snowflake-v2/assets/images/square.svg @@ -0,0 +1 @@ + diff --git a/integrations/snowflake-v2/manifest.json b/integrations/snowflake-v2/manifest.json new file mode 100644 index 00000000..4685b4e0 --- /dev/null +++ b/integrations/snowflake-v2/manifest.json @@ -0,0 +1,23 @@ +{ + "name": "Snowflake Data Export", + "version": "1.0.0", + "overview": "Run analysis in your warehouse enriched by experiment traffic data or detailed flag eval events.", + "description": "Export Launchdarkly data to your Snowflake warehouse.", + "author": "LaunchDarkly", + "supportEmail": "support@launchdarkly.com", + "allowIntegrationConfigurations": false, + "links": { + "site": "https://www.snowflake.com/", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export/snowflake", + "privacyPolicy": "https://launchdarkly.com/policies/privacy/" + }, + "categories": ["data"], + "icons": { + "square": "assets/images/square.svg", + "horizontal": "assets/images/horizontal.svg" + }, + "legacy": { + "kind": "dataExport" + }, + "otherCapabilities": ["dataExport", "warehouseExport"] +} diff --git a/integrations/snowflake/manifest.json b/integrations/snowflake/manifest.json index c6de5429..7af67f04 100644 --- a/integrations/snowflake/manifest.json +++ b/integrations/snowflake/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.snowflake.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/data-export/snowflake", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/data-export/snowflake", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["data"], diff --git a/integrations/snowplow/manifest.json b/integrations/snowplow/manifest.json index efaf07f9..8a5239eb 100644 --- a/integrations/snowplow/manifest.json +++ b/integrations/snowplow/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://snowplow.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/snowplow", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/snowplow", "supportWebsite": "https://docs.snowplow.io/docs/destinations/forwarding-events/google-tag-manager-server-side/launchdarkly-tag-for-gtm-ss/", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, diff --git a/integrations/split/manifest.json b/integrations/split/manifest.json index c621bad8..2f6faa64 100644 --- a/integrations/split/manifest.json +++ b/integrations/split/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://app.split.io", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/flags/import", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/import", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["automation", "import", "migration"], diff --git a/integrations/splunk/README.md b/integrations/splunk/README.md index 7512904f..fecccc0d 100644 --- a/integrations/splunk/README.md +++ b/integrations/splunk/README.md @@ -1,6 +1,6 @@ # Splunk -User documentation for this integration is available on the LaunchDarkly documentation site: [Splunk](https://docs.launchdarkly.com/integrations/splunk) +User documentation for this integration is available on the LaunchDarkly documentation site: [Splunk](https://launchdarkly.com/docs/integrations/splunk) API documentation for this integration is available on the Splunk documentation site: [Splunk](https://docs.splunk.com/Documentation/Splunk/latest/Data/HECExamples#Extract_JSON_fields_example) diff --git a/integrations/splunk/manifest.json b/integrations/splunk/manifest.json index d0cd6bc6..bf6f5322 100644 --- a/integrations/splunk/manifest.json +++ b/integrations/splunk/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.splunk.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/splunk", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/splunk", "privacyPolicy": "https://www.splunk.com/en_us/legal/splunk-data-security-and-privacy.html" }, "categories": ["monitoring"], diff --git a/integrations/sprig/manifest.json b/integrations/sprig/manifest.json index 57b5bda9..14ecc6ca 100644 --- a/integrations/sprig/manifest.json +++ b/integrations/sprig/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@sprig.com", "links": { "site": "https://www.sprig.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/sprig", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/sprig", "privacyPolicy": "https://sprig.com/privacy-policy" }, "categories": ["messaging", "developer-tools"], diff --git a/integrations/sumatra-synced-segments/manifest.json b/integrations/sumatra-synced-segments/manifest.json index 85cd6117..141f415f 100644 --- a/integrations/sumatra-synced-segments/manifest.json +++ b/integrations/sumatra-synced-segments/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@sumatra.ai", "links": { "site": "https://sumatra.ai/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/sumatra", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/synced-segments", "privacyPolicy": "https://launchdarkly.com/policies/privacy/", "supportWebsite": "https://optimize-docs.sumatra.ai/experiences/launchdarkly" }, diff --git a/integrations/tealium-inbound/manifest.json b/integrations/tealium-inbound/manifest.json index 67981c72..2c284b60 100644 --- a/integrations/tealium-inbound/manifest.json +++ b/integrations/tealium-inbound/manifest.json @@ -9,7 +9,7 @@ "supportWebsite": "https://tealium.com/docs-overview/", "site": "https://tealium.com/", "privacyPolicy": "https://tealium.com/privacy", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/tealium" + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/tealium" }, "categories": ["analytics", "data"], "icons": { diff --git a/integrations/terraform-cloud/manifest.json b/integrations/terraform-cloud/manifest.json index f8a1c1f6..30440bb3 100644 --- a/integrations/terraform-cloud/manifest.json +++ b/integrations/terraform-cloud/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://cloud.hashicorp.com/products/terraform", - "launchdarklyDocs": "https://docs.launchdarkly.com", + "launchdarklyDocs": "https://launchdarkly.com/docs/", "privacyPolicy": "https://www.hashicorp.com/privacy" }, "categories": ["automation", "infrastructure"], diff --git a/integrations/terraform/manifest.json b/integrations/terraform/manifest.json index 36361726..521d76a5 100644 --- a/integrations/terraform/manifest.json +++ b/integrations/terraform/manifest.json @@ -7,7 +7,7 @@ "author": "LaunchDarkly", "supportEmail": "support@launchdarkly.com", "links": { - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/terraform", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/terraform", "supportWebsite": "https://www.terraform.io/docs/providers/launchdarkly/index.html", "site": "https://www.terraform.io/docs/providers/launchdarkly/index.html", "privacyPolicy": "https://app.terraform.io/pages/privacy" diff --git a/integrations/tray/manifest.json b/integrations/tray/manifest.json index fe372bdf..97036729 100644 --- a/integrations/tray/manifest.json +++ b/integrations/tray/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@tray.io", "links": { "site": "https://tray.io/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/tray", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/tray", "privacyPolicy": "https://tray.io/privacy" }, "categories": ["automation"], diff --git a/integrations/trello/manifest.json b/integrations/trello/manifest.json index 4a032590..b6878bcc 100644 --- a/integrations/trello/manifest.json +++ b/integrations/trello/manifest.json @@ -20,7 +20,7 @@ "header": "Trello card", "emptyState": { "title": "No Trello cards link to this flag.", - "leadText": "To enable the Trello integration, [read the documentation](https://docs.launchdarkly.com/home/flags/links#creating-trello-flag-links)" + "leadText": "To enable the Trello integration, [read the documentation](https://launchdarkly.com/docs/home/flags/links#create-trello-flag-links)" }, "metadata": { "cardTitle": { diff --git a/integrations/unleash/manifest.json b/integrations/unleash/manifest.json index 4e812daf..296e2330 100644 --- a/integrations/unleash/manifest.json +++ b/integrations/unleash/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.getunleash.io", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/flags/import", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/import", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["automation", "import", "migration"], diff --git a/integrations/vercel/manifest.json b/integrations/vercel/manifest.json index 4b3a71c9..f43fac88 100644 --- a/integrations/vercel/manifest.json +++ b/integrations/vercel/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.vercel.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/vercel", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/vercel", "privacyPolicy": "https://vercel.com/legal/privacy-policy" }, "categories": ["infrastructure"], diff --git a/integrations/vscode/manifest.json b/integrations/vscode/manifest.json index c0371853..f3fe99b5 100644 --- a/integrations/vscode/manifest.json +++ b/integrations/vscode/manifest.json @@ -8,7 +8,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://marketplace.visualstudio.com/items?itemName=LaunchDarklyOfficial.launchdarkly", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/vscode", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/vscode", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["developer-tools"], diff --git a/integrations/webhooks/manifest.json b/integrations/webhooks/manifest.json index 322656f7..33662c7f 100644 --- a/integrations/webhooks/manifest.json +++ b/integrations/webhooks/manifest.json @@ -6,8 +6,8 @@ "author": "LaunchDarkly", "supportEmail": "support@launchdarkly.com", "links": { - "site": "https://docs.launchdarkly.com/home/connecting/webhooks", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/connecting/webhooks", + "site": "https://launchdarkly.com/docs/home/infrastructure/webhooks", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/infrastructure/webhooks", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["notifications"], diff --git a/integrations/zendesk/manifest.json b/integrations/zendesk/manifest.json index 1c0ac2a0..71a8c1e0 100644 --- a/integrations/zendesk/manifest.json +++ b/integrations/zendesk/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://www.zendesk.com/marketplace/apps/support/474556/launchdarkly", - "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/zendesk", + "launchdarklyDocs": "https://launchdarkly.com/docs/integrations/zendesk", "privacyPolicy": "https://launchdarkly.com/policies/privacy/" }, "categories": ["customer-support"], diff --git a/integrations/zeotap/manifest.json b/integrations/zeotap/manifest.json index a6502d74..fca8b153 100644 --- a/integrations/zeotap/manifest.json +++ b/integrations/zeotap/manifest.json @@ -7,7 +7,7 @@ "supportEmail": "support@launchdarkly.com", "links": { "site": "https://zeotap.com/", - "launchdarklyDocs": "https://docs.launchdarkly.com/home/segments/synced-segments/zeotap", + "launchdarklyDocs": "https://launchdarkly.com/docs/home/flags/zeotap", "privacyPolicy": "https://launchdarkly.com/policies/privacy " }, "categories": ["synced-segments"], diff --git a/manifest.schema.d.ts b/manifest.schema.d.ts index 32a12e7f..f14b3f42 100644 --- a/manifest.schema.d.ts +++ b/manifest.schema.d.ts @@ -54,6 +54,7 @@ export type SupportWebsite = string; */ export type Categories = | [ + | "ai" | "analytics" | "approval" | "authentication" @@ -75,6 +76,7 @@ export type Categories = ] | [ ( + | "ai" | "analytics" | "approval" | "authentication" @@ -95,6 +97,7 @@ export type Categories = | "notifications" ), ( + | "ai" | "analytics" | "approval" | "authentication" @@ -117,6 +120,7 @@ export type Categories = ] | [ ( + | "ai" | "analytics" | "approval" | "authentication" @@ -137,6 +141,7 @@ export type Categories = | "notifications" ), ( + | "ai" | "analytics" | "approval" | "authentication" @@ -157,6 +162,7 @@ export type Categories = | "notifications" ), ( + | "ai" | "analytics" | "approval" | "authentication" @@ -734,6 +740,10 @@ export type ErrorMonitoringNewIssueFoundTemplate = string; * Form variables to use for flag cleanup */ export type FlagCleanupFormVariables = FormVariable[]; +/** + * This capability will redirect users to an internal URL when they attempt to create or edit the integration from the integrations page in LaunchDarkly. + */ +export type InternalConfigurationURL = string; /** * Unique key to be used to save and retrieve OAuth credentials used by your app. This is required if your app uses an OAuth flow. */ @@ -887,6 +897,7 @@ export interface Capabilities { flagImport?: FlagImport; eventsHook?: EventsHook; flagCleanup?: FlagCleanup; + internalConfigurationURL?: InternalConfigurationURL; [k: string]: unknown; } /** diff --git a/manifest.schema.json b/manifest.schema.json index f630b3fa..3e014e2f 100644 --- a/manifest.schema.json +++ b/manifest.schema.json @@ -155,6 +155,7 @@ "items": { "type": "string", "enum": [ + "ai", "analytics", "approval", "authentication", @@ -764,7 +765,8 @@ "bigSegmentStore", "flagImport", "eventsHook", - "flagCleanup" + "flagCleanup", + "internalConfigurationURL" ] }, "properties": { @@ -5282,6 +5284,14 @@ "default": [] } } + }, + "internalConfigurationURL": { + "$id": "#/properties/capability/internal-configuration-url", + "title": "Internal Configuration URL", + "description": "This capability will redirect users to an internal URL when they attempt to create or edit the integration from the integrations page in LaunchDarkly.", + "type": "string", + "maxLength": 2048, + "pattern": "^(/[^/]+)+(?:\\?[^\\s]*)?$|^[^/]+(/[^/]+)*(?:\\?[^\\s]*)?$" } } }, diff --git a/package-lock.json b/package-lock.json index 9fc33c52..aa0e5622 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,7 +1,7 @@ { "name": "@launchdarkly/integration-framework", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { @@ -658,39 +658,6 @@ "node": ">=12" } }, - "node_modules/@inquirer/external-editor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.1.tgz", - "integrity": "sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==", - "dev": true, - "dependencies": { - "chardet": "^2.1.0", - "iconv-lite": "^0.6.3" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "@types/node": ">=18" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - } - } - }, - "node_modules/@inquirer/external-editor/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", @@ -2099,9 +2066,9 @@ } }, "node_modules/chardet": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.0.tgz", - "integrity": "sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==", + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, "node_modules/chokidar": { @@ -2957,6 +2924,20 @@ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/fast-deep-equal": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", @@ -3670,16 +3651,16 @@ "dev": true }, "node_modules/inquirer": { - "version": "8.2.7", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.7.tgz", - "integrity": "sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==", + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", "dev": true, "dependencies": { - "@inquirer/external-editor": "^1.0.0", "ansi-escapes": "^4.2.1", "chalk": "^4.1.1", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", + "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.21", "mute-stream": "0.0.8", @@ -3689,7 +3670,7 @@ "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6", - "wrap-ansi": "^6.0.1" + "wrap-ansi": "^7.0.0" }, "engines": { "node": ">=12.0.0" @@ -3790,20 +3771,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inquirer/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/interpret": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", @@ -4121,6 +4088,7 @@ "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", @@ -5516,6 +5484,15 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -6677,6 +6654,18 @@ "tslib": "^2.0.3" } }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -7180,5398 +7169,5 @@ "url": "https://github.com/sponsors/sindresorhus" } } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - } - } - }, - "@apidevtools/json-schema-ref-parser": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-8.0.0.tgz", - "integrity": "sha512-n4YBtwQhdpLto1BaUCyAeflizmIbaloGShsPyRtFf5qdFJxfssj+GgLavczgKJFa3Bq+3St2CKcpRJdjtB4EBw==", - "dev": true, - "requires": { - "@jsdevtools/ono": "^7.1.0", - "call-me-maybe": "^1.0.1", - "js-yaml": "^3.13.1" - } - }, - "@babel/code-frame": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz", - "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.25.7", - "picocolors": "^1.0.0" - } - }, - "@babel/compat-data": { - "version": "7.25.8", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.8.tgz", - "integrity": "sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==", - "dev": true - }, - "@babel/core": { - "version": "7.25.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.8.tgz", - "integrity": "sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.25.7", - "@babel/generator": "^7.25.7", - "@babel/helper-compilation-targets": "^7.25.7", - "@babel/helper-module-transforms": "^7.25.7", - "@babel/helpers": "^7.25.7", - "@babel/parser": "^7.25.8", - "@babel/template": "^7.25.7", - "@babel/traverse": "^7.25.7", - "@babel/types": "^7.25.8", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.7.tgz", - "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==", - "dev": true, - "requires": { - "@babel/types": "^7.25.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^3.0.2" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - } - } - }, - "@babel/helper-compilation-targets": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz", - "integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.25.7", - "@babel/helper-validator-option": "^7.25.7", - "browserslist": "^4.24.0", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/helper-module-imports": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz", - "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==", - "dev": true, - "requires": { - "@babel/traverse": "^7.25.7", - "@babel/types": "^7.25.7" - } - }, - "@babel/helper-module-transforms": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz", - "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.25.7", - "@babel/helper-simple-access": "^7.25.7", - "@babel/helper-validator-identifier": "^7.25.7", - "@babel/traverse": "^7.25.7" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz", - "integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==", - "dev": true - }, - "@babel/helper-simple-access": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz", - "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==", - "dev": true, - "requires": { - "@babel/traverse": "^7.25.7", - "@babel/types": "^7.25.7" - } - }, - "@babel/helper-string-parser": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz", - "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz", - "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz", - "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==", - "dev": true - }, - "@babel/helpers": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz", - "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", - "dev": true, - "requires": { - "@babel/template": "^7.25.7", - "@babel/types": "^7.25.7" - } - }, - "@babel/highlight": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz", - "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.25.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/parser": { - "version": "7.25.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.8.tgz", - "integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.25.8" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-import-attributes": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.7.tgz", - "integrity": "sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.25.7" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.7.tgz", - "integrity": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.25.7" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz", - "integrity": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.25.7" - } - }, - "@babel/template": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.7.tgz", - "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.25.7", - "@babel/parser": "^7.25.7", - "@babel/types": "^7.25.7" - } - }, - "@babel/traverse": { - "version": "7.25.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.7.tgz", - "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.25.7", - "@babel/generator": "^7.25.7", - "@babel/parser": "^7.25.7", - "@babel/template": "^7.25.7", - "@babel/types": "^7.25.7", - "debug": "^4.3.1", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.25.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.8.tgz", - "integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==", - "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.25.7", - "@babel/helper-validator-identifier": "^7.25.7", - "to-fast-properties": "^2.0.0" - } - }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - } - }, - "@inquirer/external-editor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.1.tgz", - "integrity": "sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==", - "dev": true, - "requires": { - "chardet": "^2.1.0", - "iconv-lite": "^0.6.3" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true - }, - "@jest/console": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", - "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0" - } - }, - "@jest/core": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", - "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", - "dev": true, - "requires": { - "@jest/console": "^29.7.0", - "@jest/reporters": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.7.0", - "jest-config": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-resolve-dependencies": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "jest-watcher": "^29.7.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "@jest/environment": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", - "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", - "dev": true, - "requires": { - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0" - } - }, - "@jest/expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", - "dev": true, - "requires": { - "expect": "^29.7.0", - "jest-snapshot": "^29.7.0" - } - }, - "@jest/expect-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", - "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", - "dev": true, - "requires": { - "jest-get-type": "^29.6.3" - } - }, - "@jest/fake-timers": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", - "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" - } - }, - "@jest/globals": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", - "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", - "dev": true, - "requires": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/types": "^29.6.3", - "jest-mock": "^29.7.0" - } - }, - "@jest/reporters": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", - "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@jridgewell/trace-mapping": "^0.3.18", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^6.0.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - } - } - }, - "@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", - "dev": true, - "requires": { - "@sinclair/typebox": "^0.27.8" - } - }, - "@jest/source-map": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", - "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.18", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - } - } - }, - "@jest/test-result": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", - "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", - "dev": true, - "requires": { - "@jest/console": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", - "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", - "dev": true, - "requires": { - "@jest/test-result": "^29.7.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "slash": "^3.0.0" - } - }, - "@jest/transform": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", - "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.6.3", - "@jridgewell/trace-mapping": "^0.3.18", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - } - } - }, - "@jest/types": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", - "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", - "dev": true, - "requires": { - "@jest/schemas": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dev": true, - "requires": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - } - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "dev": true - }, - "@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@jsdevtools/ono": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", - "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==", - "dev": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true - }, - "@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true - }, - "@sinonjs/commons": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", - "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", - "dev": true, - "requires": { - "@sinonjs/commons": "^3.0.0" - } - }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "dev": true, - "requires": { - "@babel/types": "^7.20.7" - } - }, - "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.35", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", - "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "@types/fined": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@types/fined/-/fined-1.1.3.tgz", - "integrity": "sha512-CWYnSRnun3CGbt6taXeVo2lCbuaj4mchVJ4UF/BdU5TSuIn3AmS13pGMwCsBUoehGbhZrBrpNJZSZI5EVilXww==", - "dev": true - }, - "@types/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/graceful-fs": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/inquirer": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.1.tgz", - "integrity": "sha512-wKW3SKIUMmltbykg4I5JzCVzUhkuD9trD6efAmYgN2MrSntY0SMRQzEnD3mkyJ/rv9NLbTC7g3hKKE86YwEDLw==", - "dev": true, - "requires": { - "@types/through": "*", - "rxjs": "^7.2.0" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", - "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", - "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", - "dev": true, - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/json-schema": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", - "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", - "dev": true - }, - "@types/liftoff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/liftoff/-/liftoff-4.0.0.tgz", - "integrity": "sha512-Ny/PJkO6nxWAQnaet8q/oWz15lrfwvdvBpuY4treB0CSsBO1CG0fVuNLngR3m3bepQLd+E4c3Y3DlC2okpUvPw==", - "dev": true, - "requires": { - "@types/fined": "*", - "@types/node": "*" - } - }, - "@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", - "dev": true - }, - "@types/node": { - "version": "20.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", - "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==", - "dev": true - }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", - "dev": true, - "requires": { - "@types/mime": "^1", - "@types/node": "*" - } - }, - "@types/serve-static": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", - "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", - "dev": true, - "requires": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "@types/stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "dev": true - }, - "@types/through": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", - "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/yargs": { - "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", - "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-escapes": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", - "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", - "dev": true, - "requires": { - "type-fest": "^0.11.0" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=", - "dev": true - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", - "dev": true - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "babel-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", - "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", - "dev": true, - "requires": { - "@jest/transform": "^29.7.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.6.3", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "dependencies": { - "istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "babel-plugin-jest-hoist": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", - "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-preset-current-node-syntax": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", - "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", - "dev": true, - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-import-attributes": "^7.24.7", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5" - } - }, - "babel-preset-jest": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", - "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0" - } - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bl": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-5.0.0.tgz", - "integrity": "sha512-8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ==", - "dev": true, - "requires": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "body-parser": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", - "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "requires": { - "fill-range": "^7.1.1" - } - }, - "browserslist": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", - "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001663", - "electron-to-chromium": "^1.5.28", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, - "call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - } - }, - "call-me-maybe": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", - "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", - "dev": true - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001668", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz", - "integrity": "sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==", - "dev": true - }, - "capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dev": true, - "requires": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true - }, - "chardet": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.0.tgz", - "integrity": "sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "dev": true - }, - "cjs-module-lexer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", - "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", - "dev": true - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cli-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.0.tgz", - "integrity": "sha512-a0VZ8LeraW0jTuCkuAGMNufareGHhyZU9z8OGsW0gXd1hZGi1SRuNRXdbGkraBBKnhyUhyebFWnRbp+dIn0f0A==", - "dev": true, - "requires": { - "ansi-regex": "^2.1.1", - "d": "^1.0.1", - "es5-ext": "^0.10.51", - "es6-iterator": "^2.0.3", - "memoizee": "^0.4.14", - "timers-ext": "^0.1.7" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - } - } - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", - "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", - "dev": true - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "requires": { - "safe-buffer": "5.2.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - }, - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "create-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", - "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "prompts": "^2.0.1" - } - }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "dev": true, - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "dateformat": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.5.1.tgz", - "integrity": "sha512-OD0TZ+B7yP7ZgpJf5K2DIbj3FZvFvxgFUuaqA/V5zTjAtAAXZ1E8bktHxmAGs4x5b7PflqA9LeQ84Og7wYtF7Q==" - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "dedent": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", - "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", - "dev": true, - "requires": {} - }, - "deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true - }, - "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", - "dev": true, - "requires": { - "clone": "^1.0.2" - } - }, - "define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - } - }, - "del": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", - "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", - "dev": true, - "requires": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "dependencies": { - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", - "dev": true - }, - "detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, - "diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "electron-to-chromium": { - "version": "1.5.36", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.36.tgz", - "integrity": "sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==", - "dev": true - }, - "emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "requires": { - "get-intrinsic": "^1.2.4" - } - }, - "es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - }, - "es5-ext": { - "version": "0.10.64", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", - "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", - "dev": true, - "requires": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "esniff": "^2.0.1", - "next-tick": "^1.1.0" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dev": true, - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true - }, - "esniff": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", - "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", - "dev": true, - "requires": { - "d": "^1.0.1", - "es5-ext": "^0.10.62", - "event-emitter": "^0.3.5", - "type": "^2.7.2" - }, - "dependencies": { - "type": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", - "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==", - "dev": true - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - }, - "event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true - }, - "expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", - "dev": true, - "requires": { - "homedir-polyfill": "^1.0.1" - } - }, - "expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", - "dev": true, - "requires": { - "@jest/expect-utils": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0" - } - }, - "express": { - "version": "4.21.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", - "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.3", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.7.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.3.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.3", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.12", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, - "ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "dev": true, - "requires": { - "type": "^2.0.0" - }, - "dependencies": { - "type": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz", - "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==", - "dev": true - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", - "dev": true - }, - "fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "requires": { - "bser": "2.1.1" - } - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - }, - "dependencies": { - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - } - } - }, - "fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", - "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "findup-sync": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz", - "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.3", - "micromatch": "^4.0.4", - "resolve-dir": "^1.0.1" - } - }, - "fined": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-2.0.0.tgz", - "integrity": "sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==", - "dev": true, - "requires": { - "expand-tilde": "^2.0.2", - "is-plain-object": "^5.0.0", - "object.defaults": "^1.1.0", - "object.pick": "^1.3.0", - "parse-filepath": "^1.0.2" - }, - "dependencies": { - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - } - } - }, - "flagged-respawn": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-2.0.0.tgz", - "integrity": "sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==", - "dev": true - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, - "foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "dependencies": { - "signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", - "dev": true - } - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "requires": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - } - }, - "get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-promise": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-3.4.0.tgz", - "integrity": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==", - "dev": true, - "requires": { - "@types/glob": "*" - } - }, - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - } - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", - "dev": true, - "requires": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - }, - "dependencies": { - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "globby": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", - "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", - "dev": true, - "requires": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "dependencies": { - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true - } - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "dev": true, - "requires": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4", - "wordwrap": "^1.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "requires": { - "es-define-property": "^1.0.0" - } - }, - "has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "requires": { - "function-bind": "^1.1.2" - } - }, - "header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "dev": true, - "requires": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "requires": { - "parse-passwd": "^1.0.0" - } - }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true - }, - "ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true - }, - "import-local": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", - "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "inquirer": { - "version": "8.2.7", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.7.tgz", - "integrity": "sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==", - "dev": true, - "requires": { - "@inquirer/external-editor": "^1.0.0", - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^6.0.1" - }, - "dependencies": { - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true - }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - } - }, - "ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - } - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - } - } - }, - "interpret": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", - "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", - "dev": true - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "requires": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-interactive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", - "dev": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", - "dev": true - }, - "is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "requires": { - "is-unc-path": "^1.0.0" - } - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true, - "requires": { - "unc-path-regex": "^0.1.2" - } - }, - "is-unicode-supported": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.2.0.tgz", - "integrity": "sha512-wH+U77omcRzevfIG8dDhTS0V9zZyweakfD01FULl97+0EHiJTTZtJqxPSkIIo/SDPv/i07k/C9jAPY+jwLLeUQ==", - "dev": true - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true - }, - "isbinaryfile": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", - "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", - "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", - "dev": true, - "requires": { - "@babel/core": "^7.23.9", - "@babel/parser": "^7.23.9", - "@istanbuljs/schema": "^0.1.3", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" - } - }, - "istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - } - }, - "istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "jackspeak": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", - "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", - "dev": true, - "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" - } - }, - "jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", - "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", - "dev": true, - "requires": { - "@jest/core": "^29.7.0", - "@jest/types": "^29.6.3", - "import-local": "^3.0.2", - "jest-cli": "^29.7.0" - } - }, - "jest-changed-files": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", - "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", - "dev": true, - "requires": { - "execa": "^5.0.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0" - } - }, - "jest-circus": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", - "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", - "dev": true, - "requires": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^1.0.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.7.0", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.7.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-cli": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", - "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", - "dev": true, - "requires": { - "@jest/core": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "create-jest": "^29.7.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "yargs": "^17.3.1" - } - }, - "jest-config": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", - "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-jest": "^29.7.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - } - }, - "jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - } - }, - "jest-docblock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", - "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", - "dev": true, - "requires": { - "detect-newline": "^3.0.0" - } - }, - "jest-each": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", - "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "jest-util": "^29.7.0", - "pretty-format": "^29.7.0" - } - }, - "jest-environment-node": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", - "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", - "dev": true, - "requires": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" - } - }, - "jest-expect-message": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/jest-expect-message/-/jest-expect-message-1.0.2.tgz", - "integrity": "sha512-WFiXMgwS2lOqQZt1iJMI/hOXpUm32X+ApsuzYcQpW5m16Pv6/Gd9kgC+Q+Q1YVNU04kYcAOv9NXMnjg6kKUy6Q==", - "dev": true - }, - "jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "dev": true - }, - "jest-haste-map": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", - "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - } - }, - "jest-junit": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/jest-junit/-/jest-junit-13.0.0.tgz", - "integrity": "sha512-JSHR+Dhb32FGJaiKkqsB7AR3OqWKtldLd6ZH2+FJ8D4tsweb8Id8zEVReU4+OlrRO1ZluqJLQEETm+Q6/KilBg==", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "strip-ansi": "^6.0.1", - "uuid": "^8.3.2", - "xml": "^1.0.1" - } - }, - "jest-leak-detector": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", - "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", - "dev": true, - "requires": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - } - }, - "jest-matcher-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - } - }, - "jest-message-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", - "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.6.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" - } - }, - "jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "requires": {} - }, - "jest-regex-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true - }, - "jest-resolve": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", - "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - } - }, - "jest-resolve-dependencies": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", - "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", - "dev": true, - "requires": { - "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.7.0" - } - }, - "jest-runner": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", - "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", - "dev": true, - "requires": { - "@jest/console": "^29.7.0", - "@jest/environment": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-leak-detector": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-resolve": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-util": "^29.7.0", - "jest-watcher": "^29.7.0", - "jest-worker": "^29.7.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - } - }, - "jest-runtime": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", - "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", - "dev": true, - "requires": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/globals": "^29.7.0", - "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - } - }, - "jest-snapshot": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", - "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.7.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.7.0", - "semver": "^7.5.3" - } - }, - "jest-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", - "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-validate": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", - "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "leven": "^3.1.0", - "pretty-format": "^29.7.0" - }, - "dependencies": { - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - } - } - }, - "jest-watcher": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", - "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", - "dev": true, - "requires": { - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.7.0", - "string-length": "^4.0.1" - } - }, - "jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json-schema-ref-parser": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz", - "integrity": "sha512-z0JGv7rRD3CnJbZY/qCpscyArdtLJhr/wRBmFUdoZ8xMjsFyNdILSprG2degqRLjBjyhZHAEBpGOxniO9rKTxA==", - "dev": true, - "requires": { - "@apidevtools/json-schema-ref-parser": "9.0.6" - }, - "dependencies": { - "@apidevtools/json-schema-ref-parser": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz", - "integrity": "sha512-M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg==", - "dev": true, - "requires": { - "@jsdevtools/ono": "^7.1.3", - "call-me-maybe": "^1.0.1", - "js-yaml": "^3.13.1" - } - } - } - }, - "json-schema-to-typescript": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/json-schema-to-typescript/-/json-schema-to-typescript-10.0.0.tgz", - "integrity": "sha512-G5RZlHchI9r/v31QhH5k57K+2kvYRBWKIGctJPsUuIkUIf3J3xXzvQZJGa16bhVjgs1fStaLamfFIti6K6V6wQ==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "cli-color": "^2.0.0", - "glob": "^7.1.6", - "glob-promise": "^3.4.0", - "is-glob": "^4.0.1", - "json-schema-ref-parser": "^9.0.6", - "json-stringify-safe": "^5.0.1", - "lodash": "^4.17.20", - "minimist": "^1.2.5", - "mkdirp": "^1.0.4", - "mz": "^2.7.0", - "prettier": "^2.2.0", - "stdin": "0.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "jsonpointer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", - "dev": true - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true - }, - "leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true - }, - "liftoff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-4.0.0.tgz", - "integrity": "sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA==", - "dev": true, - "requires": { - "extend": "^3.0.2", - "findup-sync": "^5.0.0", - "fined": "^2.0.0", - "flagged-respawn": "^2.0.0", - "is-plain-object": "^5.0.0", - "object.map": "^1.0.1", - "rechoir": "^0.8.0", - "resolve": "^1.20.0" - }, - "dependencies": { - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - } - } - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", - "dev": true - }, - "log-symbols": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", - "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", - "dev": true, - "requires": { - "chalk": "^5.0.0", - "is-unicode-supported": "^1.1.0" - }, - "dependencies": { - "chalk": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz", - "integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==", - "dev": true - } - } - }, - "lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "lru-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", - "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", - "dev": true, - "requires": { - "es5-ext": "~0.10.2" - } - }, - "make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, - "requires": { - "semver": "^7.5.3" - } - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "make-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", - "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - } - }, - "makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "requires": { - "tmpl": "1.0.5" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - }, - "memoizee": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.14.tgz", - "integrity": "sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "^0.10.45", - "es6-weak-map": "^2.0.2", - "event-emitter": "^0.3.5", - "is-promise": "^2.1", - "lru-queue": "0.1", - "next-tick": "1", - "timers-ext": "^0.1.5" - } - }, - "merge-descriptors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", - "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==" - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - }, - "micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "requires": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "mime-db": { - "version": "1.51.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", - "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==" - }, - "mime-types": { - "version": "2.1.34", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", - "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", - "requires": { - "mime-db": "1.51.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", - "dev": true - }, - "minipass": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz", - "integrity": "sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "requires": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node-plop": { - "version": "0.31.0", - "resolved": "https://registry.npmjs.org/node-plop/-/node-plop-0.31.0.tgz", - "integrity": "sha512-aKLPxiBoFTNUovvtK8j/Whc4PZREkYx6htw2HJPiU8wYquXmN8pkd9B3xlFo6AJ4ZlzFsQSf/NXR5xET8EqRYw==", - "dev": true, - "requires": { - "@types/inquirer": "^8.2.1", - "change-case": "^4.1.2", - "del": "^6.0.0", - "globby": "^13.1.1", - "handlebars": "^4.4.3", - "inquirer": "^8.2.2", - "isbinaryfile": "^4.0.8", - "lodash.get": "^4.4.2", - "lower-case": "^2.0.2", - "mkdirp": "^1.0.4", - "resolve": "^1.20.0", - "title-case": "^3.0.3", - "upper-case": "^2.0.2" - } - }, - "node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", - "dev": true - }, - "nodemon": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz", - "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==", - "dev": true, - "requires": { - "chokidar": "^3.5.2", - "debug": "^4", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^7.5.3", - "simple-update-notifier": "^2.0.0", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - }, - "dependencies": { - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" - }, - "object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", - "dev": true, - "requires": { - "array-each": "^1.0.1", - "array-slice": "^1.0.0", - "for-own": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "object.map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", - "dev": true, - "requires": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "ora": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/ora/-/ora-6.1.2.tgz", - "integrity": "sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==", - "dev": true, - "requires": { - "bl": "^5.0.0", - "chalk": "^5.0.0", - "cli-cursor": "^4.0.0", - "cli-spinners": "^2.6.1", - "is-interactive": "^2.0.0", - "is-unicode-supported": "^1.1.0", - "log-symbols": "^5.1.0", - "strip-ansi": "^7.0.1", - "wcwidth": "^1.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "chalk": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz", - "integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==", - "dev": true - }, - "cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "dev": true, - "requires": { - "restore-cursor": "^4.0.0" - } - }, - "restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - }, - "dependencies": { - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - } - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", - "dev": true, - "requires": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", - "dev": true, - "requires": { - "path-root-regex": "^0.1.0" - } - }, - "path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", - "dev": true - }, - "path-scurry": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.9.2.tgz", - "integrity": "sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==", - "dev": true, - "requires": { - "lru-cache": "^9.1.1", - "minipass": "^5.0.0 || ^6.0.2" - }, - "dependencies": { - "lru-cache": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.2.tgz", - "integrity": "sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==", - "dev": true - } - } - }, - "path-to-regexp": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", - "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==" - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "picocolors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", - "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", - "dev": true - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "plop": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/plop/-/plop-3.1.1.tgz", - "integrity": "sha512-NuctKmuNUACXBQn25bBr5oj/75nHxdKGwjA/+b7cVoj1sp+gTVqcc8eAr4QcNJgMPsZWRJBN2kMkgmsqbqV9gg==", - "dev": true, - "requires": { - "@types/liftoff": "^4.0.0", - "chalk": "^5.0.1", - "interpret": "^2.2.0", - "liftoff": "^4.0.0", - "minimist": "^1.2.6", - "node-plop": "^0.31.0", - "ora": "^6.0.1", - "v8flags": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz", - "integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==", - "dev": true - } - } - }, - "prettier": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", - "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", - "dev": true - }, - "pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "requires": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true - } - } - }, - "prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "pstree.remy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "pure-rand": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", - "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", - "dev": true - }, - "qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "requires": { - "side-channel": "^1.0.6" - } - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - }, - "raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "rechoir": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", - "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", - "dev": true, - "requires": { - "resolve": "^1.20.0" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dev": true, - "requires": { - "resolve-from": "^5.0.0" - } - }, - "resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "requires": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rimraf": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.1.tgz", - "integrity": "sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==", - "dev": true, - "requires": { - "glob": "^10.2.5" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.0.tgz", - "integrity": "sha512-AQ1/SB9HH0yCx1jXAT4vmCbTOPe5RQ+kCurjbel5xSCGhebumUv+GJZfa1rEqor3XIViqwSEmlkZCQD43RWrBg==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.7.0" - } - }, - "minimatch": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", - "integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "rxjs": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz", - "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==", - "dev": true, - "requires": { - "tslib": "^2.1.0" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "dev": true - }, - "send": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", - "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - } - } - }, - "sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "serve-static": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", - "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", - "requires": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" - } - }, - "set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "requires": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "requires": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - } - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "simple-update-notifier": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", - "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", - "dev": true, - "requires": { - "semver": "^7.5.3" - } - }, - "sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", - "dev": true, - "requires": { - "escape-string-regexp": "^2.0.0" - } - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - }, - "stdin": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/stdin/-/stdin-0.0.1.tgz", - "integrity": "sha1-0wQZgarsPf28d6GzjWNy449ftx4=", - "dev": true - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } - } - }, - "string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dev": true, - "requires": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string-width-cjs": { - "version": "npm:string-width@4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-ansi-cjs": { - "version": "npm:strip-ansi@6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "requires": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - } - }, - "thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "requires": { - "any-promise": "^1.0.0" - } - }, - "thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", - "dev": true, - "requires": { - "thenify": ">= 3.1.0 < 4" - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "timers-ext": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", - "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", - "dev": true, - "requires": { - "es5-ext": "~0.10.46", - "next-tick": "1" - } - }, - "title-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", - "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - }, - "touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "requires": { - "nopt": "~1.0.10" - } - }, - "ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "dependencies": { - "acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true - } - } - }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", - "dev": true - }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", - "dev": true - }, - "type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true - }, - "type-fest": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", - "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", - "dev": true - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", - "dev": true - }, - "uglify-js": { - "version": "3.13.5", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.5.tgz", - "integrity": "sha512-xtB8yEqIkn7zmOyS2zUNBsYCBRhDkvlNxMMY2smuJ/qA8NCHeQvKCF3i9Z4k8FJH4+PJvZRtMrPynfZ75+CSZw==", - "dev": true, - "optional": true - }, - "unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "dev": true - }, - "undefsafe": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - }, - "update-browserslist-db": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", - "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", - "dev": true, - "requires": { - "escalade": "^3.2.0", - "picocolors": "^1.1.0" - } - }, - "upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "url-parse": { - "version": "1.5.9", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.9.tgz", - "integrity": "sha512-HpOvhKBvre8wYez+QhHcYiVvVmeF6DVnuSOOPhe3cTum3BnqHhvKaZm8FU5yTiOu/Jut2ZpB2rA/SbBA1JIGlQ==", - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "v8-to-istanbul": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", - "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^2.0.0" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - } - } - }, - "v8flags": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-4.0.0.tgz", - "integrity": "sha512-83N0OkTbn6gOjJ2awNuzuK4czeGxwEwBoTqlhBZhnp8o0IJ72mXRQKphj/azwRf3acbDJZYZhbOPEJHd884ELg==", - "dev": true - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - }, - "walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dev": true, - "requires": { - "makeerror": "1.0.12" - } - }, - "wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "requires": { - "defaults": "^1.0.3" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "wrap-ansi-cjs": { - "version": "npm:wrap-ansi@7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - } - }, - "xml": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", - "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=", - "dev": true - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, - "requires": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - } - }, - "yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true - }, - "yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true - } } } diff --git a/schemas/base.json b/schemas/base.json index cfb9f32f..51952315 100644 --- a/schemas/base.json +++ b/schemas/base.json @@ -143,6 +143,7 @@ "items": { "type": "string", "enum": [ + "ai", "analytics", "approval", "authentication", @@ -279,7 +280,8 @@ "bigSegmentStore", "flagImport", "eventsHook", - "flagCleanup" + "flagCleanup", + "internalConfigurationURL" ] }, "properties": { @@ -324,6 +326,9 @@ }, "flagCleanup": { "$ref": "schemas/capabilities/flagCleanup.json#/flagCleanup" + }, + "internalConfigurationURL": { + "$ref": "schemas/capabilities/internalConfigurationUrl.json#/internalConfigurationURL" } } }, diff --git a/schemas/capabilities/internalConfigurationUrl.json b/schemas/capabilities/internalConfigurationUrl.json new file mode 100644 index 00000000..81f8227a --- /dev/null +++ b/schemas/capabilities/internalConfigurationUrl.json @@ -0,0 +1,11 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "internalConfigurationURL": { + "$id": "#/properties/capability/internal-configuration-url", + "title": "Internal Configuration URL", + "description": "This capability will redirect users to an internal URL when they attempt to create or edit the integration from the integrations page in LaunchDarkly.", + "type": "string", + "maxLength": 2048, + "pattern": "^(/[^/]+)+(?:\\?[^\\s]*)?$|^[^/]+(/[^/]+)*(?:\\?[^\\s]*)?$" + } +}