@supernovaio/cli 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/describe-design-system.d.ts +1 -12
- package/dist/commands/describe-design-system.js +14 -32
- package/dist/commands/describe-workspaces.d.ts +3 -1
- package/dist/commands/describe-workspaces.js +24 -12
- package/dist/commands/publish-documentation.d.ts +1 -13
- package/dist/commands/publish-documentation.js +13 -30
- package/dist/commands/run-local-exporter.d.ts +2 -8
- package/dist/commands/run-local-exporter.js +9 -50
- package/dist/commands/sync-tokens.d.ts +1 -16
- package/dist/commands/sync-tokens.js +8 -30
- package/dist/types/types.d.ts +1 -0
- package/dist/utils/figma-tokens-data-loader.d.ts +1 -1
- package/dist/utils/figma-tokens-data-loader.js +2 -2
- package/dist/utils/run-exporter/exporter-utils.d.ts +1 -0
- package/dist/utils/run-exporter/exporter-utils.js +1 -0
- package/dist/utils/sdk.d.ts +19 -0
- package/dist/utils/sdk.js +49 -0
- package/node_modules/@supernova-studio/pulsar-core/build/main/core/src/model/exporters/Exporter.d.ts +3 -0
- package/node_modules/@supernova-studio/pulsar-core/build/main/core/src/pulsar/PulsarInterface.d.ts +1 -0
- package/node_modules/@supernova-studio/pulsar-core/build/main/core/src/pulsar/managers/generators/PulsarExporterPackageGenerator.d.ts +1 -1
- package/node_modules/@supernova-studio/pulsar-core/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageBrowserLoader.d.ts +3 -1
- package/node_modules/@supernova-studio/pulsar-core/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageGithubLoader.d.ts +3 -1
- package/node_modules/@supernova-studio/pulsar-core/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageURLLoader.d.ts +3 -1
- package/node_modules/@supernova-studio/pulsar-core/build/main/pulsar-core.js +1 -1
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/README.md +95 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/helpers.d.ts +15 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/helpers.js +66 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/helpers.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/index.d.ts +38 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/index.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/index.js +112 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/dist/index.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/agent-base/package.json +49 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/README.md +97 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/index.d.ts +46 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-core/node_modules/https-proxy-agent/package.json +50 -0
- package/node_modules/@supernova-studio/pulsar-core/package.json +5 -4
- package/node_modules/@supernova-studio/pulsar-language/build/main/language/src/extensions/dsm/DSMBridge.d.ts +4 -0
- package/node_modules/@supernova-studio/pulsar-language/build/main/language/src/interpreter/ExecutionContext.d.ts +2 -1
- package/node_modules/@supernova-studio/pulsar-language/build/main/pulsar-language.js +2 -2
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/README.md +95 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/helpers.d.ts +15 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/helpers.js +66 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/helpers.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/index.d.ts +38 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/index.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/index.js +112 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/dist/index.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/agent-base/package.json +49 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/README.md +97 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/index.d.ts +46 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/node_modules/@supernova-studio/pulsar-language/node_modules/https-proxy-agent/package.json +50 -0
- package/node_modules/@supernova-studio/pulsar-language/package.json +5 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/.eslintrc.d.cts +41 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/SDKSupernova.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaAutomation.d.ts +156 -19
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaDataSources.d.ts +14 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaDocumentation.d.ts +48 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaIntegrations.d.ts +6 -6
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaMultiplayer.d.ts +10 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaResources.d.ts +28 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaVersions.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/areas/SDKAreaWorkspaces.d.ts +54 -5
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/data/SDKDataBridge.d.ts +4 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/data/SDKDataCore.d.ts +95 -25
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/data/requests/SDKDataCoreReadRequests.d.ts +59 -12
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/data/requests/SDKDataCoreWriteRequests.d.ts +56 -16
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/resolvers/SDKAssetGroupResolver.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/core/resolvers/SDKTokenResolver.d.ts +4 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/exports-pulsar.d.ts +2 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/exports.d.ts +54 -7
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/SDKDocsBlockBehavior.d.ts +2 -11
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/SDKDocsBlockDefinition.d.ts +9 -23
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/SDKDocsBlockItemDefinition.d.ts +20 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/SDKDocsBlockLayout.d.ts +2 -7
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/SDKDocsBlockVariant.d.ts +4 -14
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/assets/SDKDocsBlockActualAssets.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/code/SDKDocsBlockActualCode.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/code-react/SDKDocsBlockActualCodeReact.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/component-checklist/SDKDocsBlockActualComponentChecklist.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/component-checklist-all/SDKDocsBlockActualComponentChecklistAll.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/component-health/SDKDocsBlockActualComponentHealth.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/figma-frames/SDKDocsBlockActualFigmaFrames.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/link/SDKDocsBlockActualLink.d.ts +8 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/omni-multi-item/SDKDocsBlockActualOmniMultiItem.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/omni-single-item/SDKDocsBlockActualOmniSingleItem.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/release-notes/SDKDocsBlockActualReleaseNotes.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/token-detail/SDKDocsBlockActualTokenDetail.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/token-group/SDKDocsBlockActualTokenGroup.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/actual/token-list/SDKDocsBlockActualTokenList.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockAssetProperty.d.ts +22 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockAssetPropertyProperty.d.ts +9 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockBooleanProperty.d.ts +10 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockCodeProperty.d.ts +13 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockCodeSandboxProperty.d.ts +17 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockColorProperty.d.ts +13 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockComponentProperty.d.ts +21 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockComponentPropertyProperty.d.ts +9 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockDividerProperty.d.ts +9 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockEmbedUrlProperty.d.ts +12 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockImageProperty.d.ts +15 -5
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockMarkdownProperty.d.ts +10 -9
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockMultiRichTextProperty.d.ts +19 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockMultiSelectProperty.d.ts +11 -10
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockNumberProperty.d.ts +11 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockProperty.d.ts +7 -11
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockRichTextProperty.d.ts +15 -10
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockSingleSelectProperty.d.ts +11 -10
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockStorybookProperty.d.ts +22 -5
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockTableProperty.d.ts +34 -7
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockTextProperty.d.ts +12 -11
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockTokenProperty.d.ts +23 -8
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockTokenPropertyProperty.d.ts +10 -9
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockTokenTypeProperty.d.ts +13 -9
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockUrlProperty.d.ts +14 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/support/SDKDocsImageRef.d.ts +5 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/support/SDKDocsLinkRef.d.ts +10 -7
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/usage/SDKDocsBlock.d.ts +31 -41
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/usage/SDKDocsBlockItem.d.ts +16 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/entities/SDKDocsEntityHeader.d.ts +5 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/documentation/SDKDocumentationLegacyGroup.d.ts +3 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/documentation/SDKDocumentationLegacyPageAsset.d.ts +8 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/documentation/blocks/SDKDocumentationLegacyPageBlockFrame.d.ts +4 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/documentation/blocks/SDKDocumentationLegacyPageBlockRenderCode.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/documentation/configuration/SDKDocumentationLegacyItemHeader.d.ts +5 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKCodeLanguage.d.ts +33 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocBlockMode.d.ts +8 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockAssetPropertyPreviewContainerSize.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockBehaviorDataType.d.ts +3 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockImagePropertyAspectRatio.d.ts +4 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockImagePropertyWidth.d.ts +2 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockItemPropertyType.d.ts +7 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockItemVariantLayoutAlign.d.ts +3 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockItemVariantLayoutColumnResizing.d.ts +2 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockItemVariantLayoutGap.d.ts +4 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockMultiRichTextPropertyStyle.d.ts +8 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsBlockRichTextPropertyStyle.d.ts +0 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKDocsPublishStatus.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKSourceType.d.ts +2 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKTokenType.d.ts +19 -19
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/enums/SDKUserRole.d.ts +3 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenAccount.d.ts +9 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenAzureBranch.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenAzureOrganization.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenAzureProject.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenAzureRepository.d.ts +11 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenBitbucketBranch.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenBitbucketProject.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenBitbucketRepository.d.ts +8 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenBitbucketWorkspace.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenBranch.d.ts +8 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenConnection.d.ts +10 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenGitlabBranch.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenGitlabGroup.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenGitlabRepository.d.ts +9 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/CodegenRepository.d.ts +15 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/SDKConnections.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/SDKExporter.d.ts +7 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/SDKPipeline.d.ts +42 -61
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/exporter_builds/SDKExportBuild.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/exporter_builds/SDKExportBuildResults.d.ts +12 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/exporter_builds/SDKExportDestinations.d.ts +16 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteAzureCodegenBranchModel.d.ts +5 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteAzureCodegenOrganizationModel.d.ts +5 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteAzureCodegenProjectModel.d.ts +5 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteAzureCodegenRepositoryModel.d.ts +9 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteBitbucketCodegenBranchModel.d.ts +5 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteBitbucketCodegenProjectModel.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteBitbucketCodegenRepositoryModel.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteBitbucketCodegenWorkspaceModel.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteCodegenAccountModel.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteCodegenBranchModel.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteCodegenConnectionModel.d.ts +8 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteCodegenRepositoryModel.d.ts +17 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteConnectionsModel.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteGitlabCodegenBranchModel.d.ts +5 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteGitlabCodegenGroupModel.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemoteGitlabCodegenRepositoryModel.d.ts +7 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/exporters/remote/SDKRemotePipelineModel.d.ts +2 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/groups/SDKAssetGroup.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/membership/SDKMembership.d.ts +5 -5
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/resources/SDKResource.d.ts +26 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/resources/SDKResourceAsset.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/resources/SDKResourceFont.d.ts +15 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/support/SDKFigmaFrame.d.ts +22 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/support/SDKFigmaStructure.d.ts +27 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/support/SDKFigmaStructureDetail.d.ts +30 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/support/SDKLogger.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/support/SDKSource.d.ts +20 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/support/SDKTokenOrigin.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/themes/SDKTokenTheme.d.ts +8 -8
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/themes/SDKTokenThemeOverride.d.ts +9 -9
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/tokens/SDKColorToken.d.ts +1 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/tokens/SDKDimensionToken.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/tokens/SDKStringToken.d.ts +3 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/tokens/SDKTextCaseToken.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/tokens/SDKTextDecorationToken.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/tokens/SDKTokenValue.d.ts +2 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/users/SDKUser.d.ts +6 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/users/SDKUserProfile.d.ts +10 -4
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/workspaces/SDKWorkspaceInvitation.d.ts +5 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/workspaces/SDKWorkspaceSSOSettings.d.ts +2 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/workspaces/SDKWorkspaceSubscription.d.ts +4 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tests/FigmaTokensDataLoader.d.ts +3 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tests/helpers.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/design-tokens/SDKToolsDesignTokensPlugin.d.ts +8 -3
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/design-tokens/utilities/SDKDTJSONConverter.d.ts +2 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/design-tokens/utilities/SDKDTJSONParser.d.ts +3 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/design-tokens/utilities/tree/SDKDTGroupTree.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/docs-block-builder/SDKDocsBlockBuilder.d.ts +40 -17
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementFigmaTokensTransformer.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementTransformer.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformBlock.d.ts +2 -2
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformUtil.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/token-preview/TokenUtilPreviewGenerator.d.ts +4 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/token-preview/TokenUtilPreviewStyleGenerator.d.ts +4 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/tools/token-transform/SDKToolsTokenTransform.d.ts +1 -1
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/utils/CommonUtils.d.ts +5 -0
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/utils/TokenUtils.d.ts +9 -9
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/utils/deepPartial.d.ts +3 -0
- package/node_modules/@supernovaio/sdk/build/supernova-sdk-typescript.js +1 -1
- package/node_modules/@supernovaio/sdk/build/supernova-sdk-typescript.js.map +1 -1
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/README.md +95 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/helpers.d.ts +15 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/helpers.js +66 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/helpers.js.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/index.d.ts +38 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/index.d.ts.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/index.js +112 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/dist/index.js.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/agent-base/package.json +49 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/README.md +97 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/index.d.ts +46 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/node_modules/@supernovaio/sdk/node_modules/https-proxy-agent/package.json +50 -0
- package/node_modules/@supernovaio/sdk/package.json +8 -1
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKDesignSystemVersionWriter.d.ts +14 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKSupernova.d.ts +47 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/data/SDKDataBridge.d.ts +53 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/data/SDKDataCore.d.ts +146 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/elements/SDKElementProperty.d.ts +56 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/themes/SDKTokenTheme.d.ts +63 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/themes/SDKTokenThemeOverride.d.ts +49 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformBlock.d.ts +75 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformCustomBlock.d.ts +18 -0
- package/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformUtil.d.ts +34 -0
- package/node_modules/@supernovaio/supernova-sdk/build/supernova-sdk-typescript.js +2 -0
- package/node_modules/@supernovaio/supernova-sdk/build/supernova-sdk-typescript.js.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/README.md +95 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/helpers.d.ts +15 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/helpers.js +66 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/helpers.js.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/index.d.ts +38 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/index.d.ts.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/index.js +112 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/dist/index.js.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/agent-base/package.json +49 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/README.md +97 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/index.d.ts +46 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/node_modules/@supernovaio/supernova-sdk/node_modules/https-proxy-agent/package.json +50 -0
- package/node_modules/@supernovaio/supernova-sdk/package.json +130 -0
- package/node_modules/async-mutex/README.md +20 -16
- package/node_modules/async-mutex/es6/withTimeout.js +5 -2
- package/node_modules/async-mutex/index.mjs +5 -2
- package/node_modules/async-mutex/lib/withTimeout.js +5 -2
- package/node_modules/async-mutex/package.json +9 -9
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +481 -0
- package/node_modules/debug/package.json +59 -0
- package/node_modules/debug/src/browser.js +269 -0
- package/node_modules/debug/src/common.js +274 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/moment/CHANGELOG.md +8 -0
- package/node_modules/moment/dist/locale/ar-dz.js +8 -8
- package/node_modules/moment/dist/locale/ar-ly.js +8 -8
- package/node_modules/moment/dist/locale/ar-ps.js +112 -0
- package/node_modules/moment/dist/locale/ar.js +8 -8
- package/node_modules/moment/dist/locale/be.js +2 -2
- package/node_modules/moment/dist/locale/bs.js +14 -4
- package/node_modules/moment/dist/locale/ca.js +6 -6
- package/node_modules/moment/dist/locale/cs.js +5 -4
- package/node_modules/moment/dist/locale/cv.js +2 -2
- package/node_modules/moment/dist/locale/en-au.js +6 -6
- package/node_modules/moment/dist/locale/en-ca.js +6 -6
- package/node_modules/moment/dist/locale/en-gb.js +6 -6
- package/node_modules/moment/dist/locale/en-ie.js +6 -6
- package/node_modules/moment/dist/locale/en-il.js +6 -6
- package/node_modules/moment/dist/locale/en-in.js +6 -6
- package/node_modules/moment/dist/locale/en-nz.js +6 -6
- package/node_modules/moment/dist/locale/en-sg.js +6 -6
- package/node_modules/moment/dist/locale/it.js +4 -4
- package/node_modules/moment/dist/locale/ku-kmr.js +121 -0
- package/node_modules/moment/dist/locale/lt.js +2 -2
- package/node_modules/moment/dist/locale/me.js +2 -2
- package/node_modules/moment/dist/locale/nb.js +4 -4
- package/node_modules/moment/dist/locale/nl-be.js +1 -1
- package/node_modules/moment/dist/locale/nl.js +1 -1
- package/node_modules/moment/dist/locale/oc-lnc.js +6 -6
- package/node_modules/moment/dist/locale/ru.js +2 -2
- package/node_modules/moment/dist/locale/sv.js +6 -6
- package/node_modules/moment/dist/locale/tet.js +6 -6
- package/node_modules/moment/dist/locale/tlh.js +8 -8
- package/node_modules/moment/dist/locale/tzl.js +2 -2
- package/node_modules/moment/dist/locale/uk.js +4 -4
- package/node_modules/moment/dist/locale/x-pseudo.js +6 -6
- package/node_modules/moment/dist/moment.js +368 -365
- package/node_modules/moment/locale/ar-dz.js +8 -8
- package/node_modules/moment/locale/ar-ly.js +8 -8
- package/node_modules/moment/locale/ar-ps.js +123 -0
- package/node_modules/moment/locale/ar.js +8 -8
- package/node_modules/moment/locale/be.js +2 -2
- package/node_modules/moment/locale/bs.js +14 -4
- package/node_modules/moment/locale/ca.js +6 -6
- package/node_modules/moment/locale/cs.js +5 -4
- package/node_modules/moment/locale/cv.js +2 -2
- package/node_modules/moment/locale/en-au.js +6 -6
- package/node_modules/moment/locale/en-ca.js +6 -6
- package/node_modules/moment/locale/en-gb.js +6 -6
- package/node_modules/moment/locale/en-ie.js +6 -6
- package/node_modules/moment/locale/en-il.js +6 -6
- package/node_modules/moment/locale/en-in.js +6 -6
- package/node_modules/moment/locale/en-nz.js +6 -6
- package/node_modules/moment/locale/en-sg.js +6 -6
- package/node_modules/moment/locale/it.js +4 -4
- package/node_modules/moment/locale/ku-kmr.js +125 -0
- package/node_modules/moment/locale/lt.js +2 -2
- package/node_modules/moment/locale/me.js +2 -2
- package/node_modules/moment/locale/nb.js +4 -4
- package/node_modules/moment/locale/nl-be.js +1 -1
- package/node_modules/moment/locale/nl.js +1 -1
- package/node_modules/moment/locale/oc-lnc.js +6 -6
- package/node_modules/moment/locale/ru.js +2 -2
- package/node_modules/moment/locale/sv.js +6 -6
- package/node_modules/moment/locale/tet.js +6 -6
- package/node_modules/moment/locale/tlh.js +8 -8
- package/node_modules/moment/locale/tzl.js +2 -2
- package/node_modules/moment/locale/uk.js +4 -4
- package/node_modules/moment/locale/x-pseudo.js +6 -6
- package/node_modules/moment/min/locales.js +536 -306
- package/node_modules/moment/min/locales.min.js +1 -1
- package/node_modules/moment/min/locales.min.js.map +1 -1
- package/node_modules/moment/min/moment-with-locales.js +903 -670
- package/node_modules/moment/min/moment-with-locales.min.js +1 -1
- package/node_modules/moment/min/moment-with-locales.min.js.map +1 -1
- package/node_modules/moment/min/moment.min.js +1 -1
- package/node_modules/moment/min/moment.min.js.map +1 -1
- package/node_modules/moment/moment.js +368 -365
- package/node_modules/moment/package.json +7 -3
- package/node_modules/moment/src/lib/create/check-overflow.js +15 -15
- package/node_modules/moment/src/lib/create/valid.js +24 -24
- package/node_modules/moment/src/lib/duration/as.js +3 -15
- package/node_modules/moment/src/lib/locale/en.js +6 -6
- package/node_modules/moment/src/lib/locale/locales.js +2 -1
- package/node_modules/moment/src/lib/moment/calendar.js +10 -10
- package/node_modules/moment/src/lib/moment/get-set.js +66 -22
- package/node_modules/moment/src/lib/parse/regex.js +4 -0
- package/node_modules/moment/src/lib/units/aliases.js +50 -6
- package/node_modules/moment/src/lib/units/day-of-month.js +7 -11
- package/node_modules/moment/src/lib/units/day-of-week.js +9 -20
- package/node_modules/moment/src/lib/units/day-of-year.js +0 -9
- package/node_modules/moment/src/lib/units/era.js +13 -7
- package/node_modules/moment/src/lib/units/hour.js +5 -12
- package/node_modules/moment/src/lib/units/millisecond.js +0 -10
- package/node_modules/moment/src/lib/units/minute.js +7 -12
- package/node_modules/moment/src/lib/units/month.js +18 -27
- package/node_modules/moment/src/lib/units/priorities.js +18 -5
- package/node_modules/moment/src/lib/units/quarter.js +0 -10
- package/node_modules/moment/src/lib/units/second.js +7 -12
- package/node_modules/moment/src/lib/units/week-year.js +1 -11
- package/node_modules/moment/src/lib/units/week.js +8 -15
- package/node_modules/moment/src/lib/units/year.js +0 -10
- package/node_modules/moment/src/locale/ar-dz.js +8 -8
- package/node_modules/moment/src/locale/ar-ly.js +8 -8
- package/node_modules/moment/src/locale/ar-ps.js +112 -0
- package/node_modules/moment/src/locale/ar.js +8 -8
- package/node_modules/moment/src/locale/be.js +2 -2
- package/node_modules/moment/src/locale/bs.js +14 -4
- package/node_modules/moment/src/locale/ca.js +6 -6
- package/node_modules/moment/src/locale/cs.js +5 -4
- package/node_modules/moment/src/locale/cv.js +2 -2
- package/node_modules/moment/src/locale/en-au.js +6 -6
- package/node_modules/moment/src/locale/en-ca.js +6 -6
- package/node_modules/moment/src/locale/en-gb.js +6 -6
- package/node_modules/moment/src/locale/en-ie.js +6 -6
- package/node_modules/moment/src/locale/en-il.js +6 -6
- package/node_modules/moment/src/locale/en-in.js +6 -6
- package/node_modules/moment/src/locale/en-nz.js +6 -6
- package/node_modules/moment/src/locale/en-sg.js +6 -6
- package/node_modules/moment/src/locale/it.js +4 -4
- package/node_modules/moment/src/locale/ku-kmr.js +121 -0
- package/node_modules/moment/src/locale/lt.js +2 -2
- package/node_modules/moment/src/locale/me.js +2 -2
- package/node_modules/moment/src/locale/nb.js +4 -4
- package/node_modules/moment/src/locale/nl-be.js +1 -1
- package/node_modules/moment/src/locale/nl.js +1 -1
- package/node_modules/moment/src/locale/oc-lnc.js +6 -6
- package/node_modules/moment/src/locale/ru.js +2 -2
- package/node_modules/moment/src/locale/sv.js +6 -6
- package/node_modules/moment/src/locale/tet.js +6 -6
- package/node_modules/moment/src/locale/tlh.js +8 -8
- package/node_modules/moment/src/locale/tzl.js +2 -2
- package/node_modules/moment/src/locale/uk.js +4 -4
- package/node_modules/moment/src/locale/x-pseudo.js +6 -6
- package/node_modules/moment/src/moment.js +2 -2
- package/oclif.manifest.json +46 -1
- package/package.json +6 -4
- package/node_modules/@octokit/app/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/app/dist-src/each-installation.js +0 -28
- package/node_modules/@octokit/app/dist-src/each-repository.js +0 -45
- package/node_modules/@octokit/app/dist-src/get-installation-octokit.js +0 -15
- package/node_modules/@octokit/app/dist-src/index.js +0 -77
- package/node_modules/@octokit/app/dist-src/middleware/node/index.js +0 -46
- package/node_modules/@octokit/app/dist-src/middleware/node/on-unhandled-request-default.js +0 -8
- package/node_modules/@octokit/app/dist-src/types.js +0 -1
- package/node_modules/@octokit/app/dist-src/version.js +0 -1
- package/node_modules/@octokit/app/dist-src/webhooks.js +0 -47
- package/node_modules/@octokit/app/dist-types/each-installation.d.ts +0 -119
- package/node_modules/@octokit/app/dist-types/each-repository.d.ts +0 -266
- package/node_modules/@octokit/app/dist-types/get-installation-octokit.d.ts +0 -3
- package/node_modules/@octokit/app/dist-types/index.d.ts +0 -52
- package/node_modules/@octokit/app/dist-types/middleware/node/index.d.ts +0 -12
- package/node_modules/@octokit/app/dist-types/middleware/node/on-unhandled-request-default.d.ts +0 -4
- package/node_modules/@octokit/app/dist-types/types.d.ts +0 -51
- package/node_modules/@octokit/app/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/app/dist-types/webhooks.d.ts +0 -6
- package/node_modules/@octokit/auth-app/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-app/dist-src/auth.js +0 -28
- package/node_modules/@octokit/auth-app/dist-src/cache.js +0 -71
- package/node_modules/@octokit/auth-app/dist-src/get-app-authentication.js +0 -24
- package/node_modules/@octokit/auth-app/dist-src/get-installation-authentication.js +0 -81
- package/node_modules/@octokit/auth-app/dist-src/hook.js +0 -88
- package/node_modules/@octokit/auth-app/dist-src/index.js +0 -46
- package/node_modules/@octokit/auth-app/dist-src/requires-app-auth.js +0 -53
- package/node_modules/@octokit/auth-app/dist-src/to-token-authentication.js +0 -12
- package/node_modules/@octokit/auth-app/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-app/dist-src/version.js +0 -1
- package/node_modules/@octokit/auth-app/dist-types/auth.d.ts +0 -20
- package/node_modules/@octokit/auth-app/dist-types/cache.d.ts +0 -5
- package/node_modules/@octokit/auth-app/dist-types/get-app-authentication.d.ts +0 -4
- package/node_modules/@octokit/auth-app/dist-types/get-installation-authentication.d.ts +0 -2
- package/node_modules/@octokit/auth-app/dist-types/hook.d.ts +0 -2
- package/node_modules/@octokit/auth-app/dist-types/index.d.ts +0 -4
- package/node_modules/@octokit/auth-app/dist-types/requires-app-auth.d.ts +0 -1
- package/node_modules/@octokit/auth-app/dist-types/to-token-authentication.d.ts +0 -2
- package/node_modules/@octokit/auth-app/dist-types/types.d.ts +0 -125
- package/node_modules/@octokit/auth-app/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/auth-app/dist-web/index.js +0 -403
- package/node_modules/@octokit/auth-app/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-app/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-app/dist-src/auth.js +0 -40
- package/node_modules/@octokit/auth-oauth-app/dist-src/hook.js +0 -24
- package/node_modules/@octokit/auth-oauth-app/dist-src/index.js +0 -20
- package/node_modules/@octokit/auth-oauth-app/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-oauth-app/dist-src/version.js +0 -1
- package/node_modules/@octokit/auth-oauth-app/dist-types/auth.d.ts +0 -18
- package/node_modules/@octokit/auth-oauth-app/dist-types/hook.d.ts +0 -3
- package/node_modules/@octokit/auth-oauth-app/dist-types/index.d.ts +0 -5
- package/node_modules/@octokit/auth-oauth-app/dist-types/types.d.ts +0 -98
- package/node_modules/@octokit/auth-oauth-app/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/auth-oauth-app/dist-web/index.js +0 -87
- package/node_modules/@octokit/auth-oauth-app/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-app/node_modules/@octokit/request-error/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-app/node_modules/@octokit/request-error/dist-src/index.js +0 -55
- package/node_modules/@octokit/auth-oauth-app/node_modules/@octokit/request-error/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-oauth-app/node_modules/@octokit/request-error/dist-types/index.d.ts +0 -33
- package/node_modules/@octokit/auth-oauth-app/node_modules/@octokit/request-error/dist-types/types.d.ts +0 -9
- package/node_modules/@octokit/auth-oauth-app/node_modules/@octokit/request-error/dist-web/index.js +0 -59
- package/node_modules/@octokit/auth-oauth-app/node_modules/@octokit/request-error/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-device/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-device/dist-src/auth.js +0 -6
- package/node_modules/@octokit/auth-oauth-device/dist-src/get-oauth-access-token.js +0 -78
- package/node_modules/@octokit/auth-oauth-device/dist-src/hook.js +0 -14
- package/node_modules/@octokit/auth-oauth-device/dist-src/index.js +0 -36
- package/node_modules/@octokit/auth-oauth-device/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-oauth-device/dist-src/version.js +0 -1
- package/node_modules/@octokit/auth-oauth-device/dist-types/auth.d.ts +0 -2
- package/node_modules/@octokit/auth-oauth-device/dist-types/get-oauth-access-token.d.ts +0 -6
- package/node_modules/@octokit/auth-oauth-device/dist-types/hook.d.ts +0 -3
- package/node_modules/@octokit/auth-oauth-device/dist-types/index.d.ts +0 -4
- package/node_modules/@octokit/auth-oauth-device/dist-types/types.d.ts +0 -68
- package/node_modules/@octokit/auth-oauth-device/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/auth-oauth-device/dist-web/index.js +0 -138
- package/node_modules/@octokit/auth-oauth-device/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-device/node_modules/@octokit/request-error/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-device/node_modules/@octokit/request-error/dist-src/index.js +0 -55
- package/node_modules/@octokit/auth-oauth-device/node_modules/@octokit/request-error/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-oauth-device/node_modules/@octokit/request-error/dist-types/index.d.ts +0 -33
- package/node_modules/@octokit/auth-oauth-device/node_modules/@octokit/request-error/dist-types/types.d.ts +0 -9
- package/node_modules/@octokit/auth-oauth-device/node_modules/@octokit/request-error/dist-web/index.js +0 -59
- package/node_modules/@octokit/auth-oauth-device/node_modules/@octokit/request-error/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-user/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-user/dist-src/auth.js +0 -94
- package/node_modules/@octokit/auth-oauth-user/dist-src/get-authentication.js +0 -48
- package/node_modules/@octokit/auth-oauth-user/dist-src/hook.js +0 -21
- package/node_modules/@octokit/auth-oauth-user/dist-src/index.js +0 -25
- package/node_modules/@octokit/auth-oauth-user/dist-src/requires-basic-auth.js +0 -20
- package/node_modules/@octokit/auth-oauth-user/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-oauth-user/dist-src/version.js +0 -1
- package/node_modules/@octokit/auth-oauth-user/dist-types/auth.d.ts +0 -3
- package/node_modules/@octokit/auth-oauth-user/dist-types/get-authentication.d.ts +0 -3
- package/node_modules/@octokit/auth-oauth-user/dist-types/hook.d.ts +0 -6
- package/node_modules/@octokit/auth-oauth-user/dist-types/index.d.ts +0 -11
- package/node_modules/@octokit/auth-oauth-user/dist-types/requires-basic-auth.d.ts +0 -1
- package/node_modules/@octokit/auth-oauth-user/dist-types/types.d.ts +0 -110
- package/node_modules/@octokit/auth-oauth-user/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/auth-oauth-user/dist-web/index.js +0 -210
- package/node_modules/@octokit/auth-oauth-user/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/check-token.js +0 -27
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/create-device-code.js +0 -14
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/delete-authorization.js +0 -15
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/delete-token.js +0 -15
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/exchange-device-code.js +0 -34
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/exchange-web-flow-code.js +0 -33
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/get-web-flow-authorization-url.js +0 -11
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/index.js +0 -11
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/refresh-token.js +0 -27
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/reset-token.js +0 -28
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/scope-token.js +0 -21
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/utils.js +0 -27
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-src/version.js +0 -1
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/check-token.d.ts +0 -24
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/create-device-code.d.ts +0 -20
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/delete-authorization.d.ts +0 -18
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/delete-token.d.ts +0 -18
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/exchange-device-code.d.ts +0 -57
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/exchange-web-flow-code.d.ts +0 -32
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/get-web-flow-authorization-url.d.ts +0 -25
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/index.d.ts +0 -12
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/refresh-token.d.ts +0 -13
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/reset-token.d.ts +0 -24
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/scope-token.d.ts +0 -29
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/types.d.ts +0 -58
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/utils.d.ts +0 -3
- package/node_modules/@octokit/auth-oauth-user/node_modules/@octokit/oauth-methods/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/auth-token/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-token/dist-src/auth.js +0 -21
- package/node_modules/@octokit/auth-token/dist-src/hook.js +0 -6
- package/node_modules/@octokit/auth-token/dist-src/index.js +0 -14
- package/node_modules/@octokit/auth-token/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js +0 -11
- package/node_modules/@octokit/auth-token/dist-types/auth.d.ts +0 -2
- package/node_modules/@octokit/auth-token/dist-types/hook.d.ts +0 -2
- package/node_modules/@octokit/auth-token/dist-types/index.d.ts +0 -7
- package/node_modules/@octokit/auth-token/dist-types/types.d.ts +0 -33
- package/node_modules/@octokit/auth-token/dist-types/with-authorization-prefix.d.ts +0 -6
- package/node_modules/@octokit/auth-token/dist-web/index.js +0 -55
- package/node_modules/@octokit/auth-token/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/auth-unauthenticated/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/auth-unauthenticated/dist-src/auth.js +0 -6
- package/node_modules/@octokit/auth-unauthenticated/dist-src/hook.js +0 -27
- package/node_modules/@octokit/auth-unauthenticated/dist-src/index.js +0 -10
- package/node_modules/@octokit/auth-unauthenticated/dist-src/is-abuse-limit-error.js +0 -7
- package/node_modules/@octokit/auth-unauthenticated/dist-src/is-rate-limit-error.js +0 -10
- package/node_modules/@octokit/auth-unauthenticated/dist-src/types.js +0 -1
- package/node_modules/@octokit/auth-unauthenticated/dist-types/auth.d.ts +0 -2
- package/node_modules/@octokit/auth-unauthenticated/dist-types/hook.d.ts +0 -2
- package/node_modules/@octokit/auth-unauthenticated/dist-types/index.d.ts +0 -7
- package/node_modules/@octokit/auth-unauthenticated/dist-types/is-abuse-limit-error.d.ts +0 -2
- package/node_modules/@octokit/auth-unauthenticated/dist-types/is-rate-limit-error.d.ts +0 -2
- package/node_modules/@octokit/auth-unauthenticated/dist-types/types.d.ts +0 -18
- package/node_modules/@octokit/auth-unauthenticated/dist-web/index.js +0 -63
- package/node_modules/@octokit/auth-unauthenticated/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/core/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/core/dist-src/index.js +0 -125
- package/node_modules/@octokit/core/dist-src/types.js +0 -1
- package/node_modules/@octokit/core/dist-src/version.js +0 -1
- package/node_modules/@octokit/core/dist-types/index.d.ts +0 -30
- package/node_modules/@octokit/core/dist-types/types.d.ts +0 -44
- package/node_modules/@octokit/core/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/core/dist-web/index.js +0 -130
- package/node_modules/@octokit/core/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/endpoint/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/endpoint/dist-src/defaults.js +0 -17
- package/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js +0 -5
- package/node_modules/@octokit/endpoint/dist-src/index.js +0 -3
- package/node_modules/@octokit/endpoint/dist-src/merge.js +0 -26
- package/node_modules/@octokit/endpoint/dist-src/parse.js +0 -81
- package/node_modules/@octokit/endpoint/dist-src/util/add-query-parameters.js +0 -17
- package/node_modules/@octokit/endpoint/dist-src/util/extract-url-variable-names.js +0 -11
- package/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js +0 -9
- package/node_modules/@octokit/endpoint/dist-src/util/merge-deep.js +0 -16
- package/node_modules/@octokit/endpoint/dist-src/util/omit.js +0 -8
- package/node_modules/@octokit/endpoint/dist-src/util/remove-undefined-properties.js +0 -8
- package/node_modules/@octokit/endpoint/dist-src/util/url-template.js +0 -164
- package/node_modules/@octokit/endpoint/dist-src/version.js +0 -1
- package/node_modules/@octokit/endpoint/dist-src/with-defaults.js +0 -13
- package/node_modules/@octokit/endpoint/dist-types/defaults.d.ts +0 -2
- package/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts +0 -3
- package/node_modules/@octokit/endpoint/dist-types/index.d.ts +0 -1
- package/node_modules/@octokit/endpoint/dist-types/merge.d.ts +0 -2
- package/node_modules/@octokit/endpoint/dist-types/parse.d.ts +0 -2
- package/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts +0 -4
- package/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts +0 -1
- package/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts +0 -5
- package/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts +0 -1
- package/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts +0 -5
- package/node_modules/@octokit/endpoint/dist-types/util/remove-undefined-properties.d.ts +0 -1
- package/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts +0 -3
- package/node_modules/@octokit/endpoint/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts +0 -2
- package/node_modules/@octokit/endpoint/dist-web/index.js +0 -381
- package/node_modules/@octokit/endpoint/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/graphql/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/graphql/dist-src/error.js +0 -21
- package/node_modules/@octokit/graphql/dist-src/graphql.js +0 -52
- package/node_modules/@octokit/graphql/dist-src/index.js +0 -18
- package/node_modules/@octokit/graphql/dist-src/types.js +0 -1
- package/node_modules/@octokit/graphql/dist-src/version.js +0 -1
- package/node_modules/@octokit/graphql/dist-src/with-defaults.js +0 -12
- package/node_modules/@octokit/graphql/dist-types/error.d.ts +0 -13
- package/node_modules/@octokit/graphql/dist-types/graphql.d.ts +0 -3
- package/node_modules/@octokit/graphql/dist-types/index.d.ts +0 -5
- package/node_modules/@octokit/graphql/dist-types/types.d.ts +0 -55
- package/node_modules/@octokit/graphql/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/graphql/dist-types/with-defaults.d.ts +0 -3
- package/node_modules/@octokit/graphql/dist-web/index.js +0 -106
- package/node_modules/@octokit/graphql/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/oauth-app/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/oauth-app/dist-src/add-event-handler.js +0 -12
- package/node_modules/@octokit/oauth-app/dist-src/emit-event.js +0 -13
- package/node_modules/@octokit/oauth-app/dist-src/index.js +0 -68
- package/node_modules/@octokit/oauth-app/dist-src/methods/check-token.js +0 -13
- package/node_modules/@octokit/oauth-app/dist-src/methods/create-token.js +0 -29
- package/node_modules/@octokit/oauth-app/dist-src/methods/delete-authorization.js +0 -44
- package/node_modules/@octokit/oauth-app/dist-src/methods/delete-token.js +0 -33
- package/node_modules/@octokit/oauth-app/dist-src/methods/get-oauth-client-code.js +0 -7
- package/node_modules/@octokit/oauth-app/dist-src/methods/get-user-octokit.js +0 -26
- package/node_modules/@octokit/oauth-app/dist-src/methods/get-web-flow-authorization-url.js +0 -14
- package/node_modules/@octokit/oauth-app/dist-src/methods/refresh-token.js +0 -35
- package/node_modules/@octokit/oauth-app/dist-src/methods/reset-token.js +0 -63
- package/node_modules/@octokit/oauth-app/dist-src/methods/scope-token.js +0 -35
- package/node_modules/@octokit/oauth-app/dist-src/middleware/aws-lambda/api-gateway-v2-parse-request.js +0 -12
- package/node_modules/@octokit/oauth-app/dist-src/middleware/aws-lambda/api-gateway-v2-send-response.js +0 -7
- package/node_modules/@octokit/oauth-app/dist-src/middleware/aws-lambda/api-gateway-v2.js +0 -16
- package/node_modules/@octokit/oauth-app/dist-src/middleware/handle-request.js +0 -218
- package/node_modules/@octokit/oauth-app/dist-src/middleware/node/index.js +0 -24
- package/node_modules/@octokit/oauth-app/dist-src/middleware/node/parse-request.js +0 -14
- package/node_modules/@octokit/oauth-app/dist-src/middleware/node/send-response.js +0 -4
- package/node_modules/@octokit/oauth-app/dist-src/middleware/on-unhandled-request-default.js +0 -9
- package/node_modules/@octokit/oauth-app/dist-src/middleware/types.js +0 -1
- package/node_modules/@octokit/oauth-app/dist-src/middleware/web-worker/index.js +0 -23
- package/node_modules/@octokit/oauth-app/dist-src/middleware/web-worker/parse-request.js +0 -10
- package/node_modules/@octokit/oauth-app/dist-src/middleware/web-worker/send-response.js +0 -6
- package/node_modules/@octokit/oauth-app/dist-src/oauth-app-octokit.js +0 -6
- package/node_modules/@octokit/oauth-app/dist-src/types.js +0 -1
- package/node_modules/@octokit/oauth-app/dist-src/version.js +0 -1
- package/node_modules/@octokit/oauth-app/dist-types/add-event-handler.d.ts +0 -2
- package/node_modules/@octokit/oauth-app/dist-types/emit-event.d.ts +0 -2
- package/node_modules/@octokit/oauth-app/dist-types/index.d.ts +0 -46
- package/node_modules/@octokit/oauth-app/dist-types/methods/check-token.d.ts +0 -14
- package/node_modules/@octokit/oauth-app/dist-types/methods/create-token.d.ts +0 -24
- package/node_modules/@octokit/oauth-app/dist-types/methods/delete-authorization.d.ts +0 -9
- package/node_modules/@octokit/oauth-app/dist-types/methods/delete-token.d.ts +0 -9
- package/node_modules/@octokit/oauth-app/dist-types/methods/get-oauth-client-code.d.ts +0 -1
- package/node_modules/@octokit/oauth-app/dist-types/methods/get-user-octokit.d.ts +0 -10
- package/node_modules/@octokit/oauth-app/dist-types/methods/get-web-flow-authorization-url.d.ts +0 -10
- package/node_modules/@octokit/oauth-app/dist-types/methods/refresh-token.d.ts +0 -19
- package/node_modules/@octokit/oauth-app/dist-types/methods/reset-token.d.ts +0 -24
- package/node_modules/@octokit/oauth-app/dist-types/methods/scope-token.d.ts +0 -19
- package/node_modules/@octokit/oauth-app/dist-types/middleware/aws-lambda/api-gateway-v2-parse-request.d.ts +0 -3
- package/node_modules/@octokit/oauth-app/dist-types/middleware/aws-lambda/api-gateway-v2-send-response.d.ts +0 -3
- package/node_modules/@octokit/oauth-app/dist-types/middleware/aws-lambda/api-gateway-v2.d.ts +0 -7
- package/node_modules/@octokit/oauth-app/dist-types/middleware/handle-request.d.ts +0 -4
- package/node_modules/@octokit/oauth-app/dist-types/middleware/node/index.d.ts +0 -9
- package/node_modules/@octokit/oauth-app/dist-types/middleware/node/parse-request.d.ts +0 -4
- package/node_modules/@octokit/oauth-app/dist-types/middleware/node/send-response.d.ts +0 -4
- package/node_modules/@octokit/oauth-app/dist-types/middleware/on-unhandled-request-default.d.ts +0 -2
- package/node_modules/@octokit/oauth-app/dist-types/middleware/types.d.ts +0 -14
- package/node_modules/@octokit/oauth-app/dist-types/middleware/web-worker/index.d.ts +0 -7
- package/node_modules/@octokit/oauth-app/dist-types/middleware/web-worker/parse-request.d.ts +0 -2
- package/node_modules/@octokit/oauth-app/dist-types/middleware/web-worker/send-response.d.ts +0 -2
- package/node_modules/@octokit/oauth-app/dist-types/oauth-app-octokit.d.ts +0 -2
- package/node_modules/@octokit/oauth-app/dist-types/types.d.ts +0 -65
- package/node_modules/@octokit/oauth-app/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/check-token.js +0 -27
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/create-device-code.js +0 -14
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/delete-authorization.js +0 -15
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/delete-token.js +0 -15
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/exchange-device-code.js +0 -34
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/exchange-web-flow-code.js +0 -33
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/get-web-flow-authorization-url.js +0 -11
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/index.js +0 -11
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/refresh-token.js +0 -27
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/reset-token.js +0 -28
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/scope-token.js +0 -21
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/types.js +0 -1
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/utils.js +0 -27
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-src/version.js +0 -1
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/check-token.d.ts +0 -24
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/create-device-code.d.ts +0 -20
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/delete-authorization.d.ts +0 -18
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/delete-token.d.ts +0 -18
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/exchange-device-code.d.ts +0 -57
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/exchange-web-flow-code.d.ts +0 -32
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/get-web-flow-authorization-url.d.ts +0 -25
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/index.d.ts +0 -12
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/refresh-token.d.ts +0 -13
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/reset-token.d.ts +0 -24
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/scope-token.d.ts +0 -29
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/types.d.ts +0 -58
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/utils.d.ts +0 -3
- package/node_modules/@octokit/oauth-app/node_modules/@octokit/oauth-methods/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/oauth-authorization-url/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/oauth-authorization-url/dist-src/index.js +0 -53
- package/node_modules/@octokit/oauth-authorization-url/dist-src/types.js +0 -1
- package/node_modules/@octokit/oauth-authorization-url/dist-types/index.d.ts +0 -4
- package/node_modules/@octokit/oauth-authorization-url/dist-types/types.d.ts +0 -39
- package/node_modules/@octokit/oauth-authorization-url/dist-web/index.js +0 -56
- package/node_modules/@octokit/oauth-authorization-url/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/oauth-authorization-url/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/oauth-authorization-url/dist-src/index.js +0 -53
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/oauth-authorization-url/dist-src/types.js +0 -1
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/oauth-authorization-url/dist-types/index.d.ts +0 -4
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/oauth-authorization-url/dist-types/types.d.ts +0 -39
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/oauth-authorization-url/dist-web/index.js +0 -56
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/oauth-authorization-url/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/request-error/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/request-error/dist-src/index.js +0 -55
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/request-error/dist-src/types.js +0 -1
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/request-error/dist-types/index.d.ts +0 -33
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/request-error/dist-types/types.d.ts +0 -9
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/request-error/dist-web/index.js +0 -59
- package/node_modules/@octokit/oauth-methods/node_modules/@octokit/request-error/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/plugin-paginate-rest/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/compose-paginate.js +0 -5
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/generated/paginating-endpoints.js +0 -216
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/index.js +0 -17
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/iterator.js +0 -39
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/normalize-paginated-list-response.js +0 -47
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/paginate.js +0 -24
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/paginating-endpoints.js +0 -10
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/types.js +0 -1
- package/node_modules/@octokit/plugin-paginate-rest/dist-src/version.js +0 -1
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/compose-paginate.d.ts +0 -2
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/generated/paginating-endpoints.d.ts +0 -1612
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/index.d.ts +0 -16
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/iterator.d.ts +0 -20
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/normalize-paginated-list-response.d.ts +0 -18
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/paginate.d.ts +0 -3
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/paginating-endpoints.d.ts +0 -3
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/types.d.ts +0 -242
- package/node_modules/@octokit/plugin-paginate-rest/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/plugin-paginate-rest/dist-web/index.js +0 -358
- package/node_modules/@octokit/plugin-paginate-rest/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js +0 -60
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js +0 -1664
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/generated/method-types.js +0 -1
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/generated/parameters-and-response-types.js +0 -1
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/index.js +0 -18
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/types.js +0 -1
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/version.js +0 -1
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/endpoints-to-methods.d.ts +0 -4
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/endpoints.d.ts +0 -3
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/method-types.d.ts +0 -9945
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types.d.ts +0 -3211
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/index.d.ts +0 -11
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/types.d.ts +0 -18
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-web/index.js +0 -1745
- package/node_modules/@octokit/plugin-rest-endpoint-methods/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/plugin-retry/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/plugin-retry/dist-src/error-request.js +0 -15
- package/node_modules/@octokit/plugin-retry/dist-src/index.js +0 -27
- package/node_modules/@octokit/plugin-retry/dist-src/version.js +0 -1
- package/node_modules/@octokit/plugin-retry/dist-src/wrap-request.js +0 -18
- package/node_modules/@octokit/plugin-retry/dist-types/error-request.d.ts +0 -1
- package/node_modules/@octokit/plugin-retry/dist-types/index.d.ts +0 -11
- package/node_modules/@octokit/plugin-retry/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/plugin-retry/dist-types/wrap-request.d.ts +0 -1
- package/node_modules/@octokit/plugin-retry/dist-web/index.js +0 -64
- package/node_modules/@octokit/plugin-retry/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/plugin-throttling/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/plugin-throttling/dist-src/generated/triggers-notification-paths.js +0 -19
- package/node_modules/@octokit/plugin-throttling/dist-src/index.js +0 -127
- package/node_modules/@octokit/plugin-throttling/dist-src/route-matcher.js +0 -25
- package/node_modules/@octokit/plugin-throttling/dist-src/types.js +0 -1
- package/node_modules/@octokit/plugin-throttling/dist-src/version.js +0 -1
- package/node_modules/@octokit/plugin-throttling/dist-src/wrap-request.js +0 -47
- package/node_modules/@octokit/plugin-throttling/dist-types/generated/triggers-notification-paths.d.ts +0 -2
- package/node_modules/@octokit/plugin-throttling/dist-types/index.d.ts +0 -7
- package/node_modules/@octokit/plugin-throttling/dist-types/route-matcher.d.ts +0 -1
- package/node_modules/@octokit/plugin-throttling/dist-types/types.d.ts +0 -43
- package/node_modules/@octokit/plugin-throttling/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/plugin-throttling/dist-types/wrap-request.d.ts +0 -1
- package/node_modules/@octokit/plugin-throttling/dist-web/index.js +0 -223
- package/node_modules/@octokit/plugin-throttling/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/request/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/request/dist-src/fetch-wrapper.js +0 -119
- package/node_modules/@octokit/request/dist-src/get-buffer-response.js +0 -3
- package/node_modules/@octokit/request/dist-src/index.js +0 -9
- package/node_modules/@octokit/request/dist-src/version.js +0 -1
- package/node_modules/@octokit/request/dist-src/with-defaults.js +0 -22
- package/node_modules/@octokit/request/dist-types/fetch-wrapper.d.ts +0 -11
- package/node_modules/@octokit/request/dist-types/get-buffer-response.d.ts +0 -2
- package/node_modules/@octokit/request/dist-types/index.d.ts +0 -1
- package/node_modules/@octokit/request/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/request/dist-types/with-defaults.d.ts +0 -2
- package/node_modules/@octokit/request/dist-web/index.js +0 -158
- package/node_modules/@octokit/request/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/request-error/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/request-error/dist-src/index.js +0 -55
- package/node_modules/@octokit/request-error/dist-src/types.js +0 -1
- package/node_modules/@octokit/request-error/dist-types/index.d.ts +0 -33
- package/node_modules/@octokit/request-error/dist-types/types.d.ts +0 -9
- package/node_modules/@octokit/request-error/dist-web/index.js +0 -59
- package/node_modules/@octokit/request-error/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/types/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/types/dist-src/AuthInterface.js +0 -1
- package/node_modules/@octokit/types/dist-src/EndpointDefaults.js +0 -1
- package/node_modules/@octokit/types/dist-src/EndpointInterface.js +0 -1
- package/node_modules/@octokit/types/dist-src/EndpointOptions.js +0 -1
- package/node_modules/@octokit/types/dist-src/Fetch.js +0 -1
- package/node_modules/@octokit/types/dist-src/GetResponseTypeFromEndpointMethod.js +0 -1
- package/node_modules/@octokit/types/dist-src/OctokitResponse.js +0 -1
- package/node_modules/@octokit/types/dist-src/RequestError.js +0 -1
- package/node_modules/@octokit/types/dist-src/RequestHeaders.js +0 -1
- package/node_modules/@octokit/types/dist-src/RequestInterface.js +0 -1
- package/node_modules/@octokit/types/dist-src/RequestMethod.js +0 -1
- package/node_modules/@octokit/types/dist-src/RequestOptions.js +0 -1
- package/node_modules/@octokit/types/dist-src/RequestParameters.js +0 -1
- package/node_modules/@octokit/types/dist-src/RequestRequestOptions.js +0 -1
- package/node_modules/@octokit/types/dist-src/ResponseHeaders.js +0 -1
- package/node_modules/@octokit/types/dist-src/Route.js +0 -1
- package/node_modules/@octokit/types/dist-src/Signal.js +0 -1
- package/node_modules/@octokit/types/dist-src/StrategyInterface.js +0 -1
- package/node_modules/@octokit/types/dist-src/Url.js +0 -1
- package/node_modules/@octokit/types/dist-src/VERSION.js +0 -1
- package/node_modules/@octokit/types/dist-src/generated/Endpoints.js +0 -1
- package/node_modules/@octokit/types/dist-src/index.js +0 -21
- package/node_modules/@octokit/types/dist-types/AuthInterface.d.ts +0 -31
- package/node_modules/@octokit/types/dist-types/EndpointDefaults.d.ts +0 -21
- package/node_modules/@octokit/types/dist-types/EndpointInterface.d.ts +0 -65
- package/node_modules/@octokit/types/dist-types/EndpointOptions.d.ts +0 -7
- package/node_modules/@octokit/types/dist-types/Fetch.d.ts +0 -4
- package/node_modules/@octokit/types/dist-types/GetResponseTypeFromEndpointMethod.d.ts +0 -5
- package/node_modules/@octokit/types/dist-types/OctokitResponse.d.ts +0 -17
- package/node_modules/@octokit/types/dist-types/RequestError.d.ts +0 -11
- package/node_modules/@octokit/types/dist-types/RequestHeaders.d.ts +0 -15
- package/node_modules/@octokit/types/dist-types/RequestInterface.d.ts +0 -34
- package/node_modules/@octokit/types/dist-types/RequestMethod.d.ts +0 -4
- package/node_modules/@octokit/types/dist-types/RequestOptions.d.ts +0 -14
- package/node_modules/@octokit/types/dist-types/RequestParameters.d.ts +0 -45
- package/node_modules/@octokit/types/dist-types/RequestRequestOptions.d.ts +0 -26
- package/node_modules/@octokit/types/dist-types/ResponseHeaders.d.ts +0 -20
- package/node_modules/@octokit/types/dist-types/Route.d.ts +0 -4
- package/node_modules/@octokit/types/dist-types/Signal.d.ts +0 -6
- package/node_modules/@octokit/types/dist-types/StrategyInterface.d.ts +0 -4
- package/node_modules/@octokit/types/dist-types/Url.d.ts +0 -4
- package/node_modules/@octokit/types/dist-types/VERSION.d.ts +0 -1
- package/node_modules/@octokit/types/dist-types/generated/Endpoints.d.ts +0 -3571
- package/node_modules/@octokit/types/dist-types/index.d.ts +0 -21
- package/node_modules/@octokit/types/dist-web/index.js +0 -4
- package/node_modules/@octokit/types/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/webhooks/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/webhooks/dist-src/createLogger.js +0 -7
- package/node_modules/@octokit/webhooks/dist-src/event-handler/index.js +0 -20
- package/node_modules/@octokit/webhooks/dist-src/event-handler/on.js +0 -28
- package/node_modules/@octokit/webhooks/dist-src/event-handler/receive.js +0 -57
- package/node_modules/@octokit/webhooks/dist-src/event-handler/remove-listener.js +0 -17
- package/node_modules/@octokit/webhooks/dist-src/event-handler/wrap-error-handler.js +0 -19
- package/node_modules/@octokit/webhooks/dist-src/generated/webhook-names.js +0 -244
- package/node_modules/@octokit/webhooks/dist-src/index.js +0 -30
- package/node_modules/@octokit/webhooks/dist-src/middleware/node/get-missing-headers.js +0 -9
- package/node_modules/@octokit/webhooks/dist-src/middleware/node/get-payload.js +0 -25
- package/node_modules/@octokit/webhooks/dist-src/middleware/node/index.js +0 -10
- package/node_modules/@octokit/webhooks/dist-src/middleware/node/middleware.js +0 -70
- package/node_modules/@octokit/webhooks/dist-src/middleware/node/on-unhandled-request-default.js +0 -8
- package/node_modules/@octokit/webhooks/dist-src/middleware/node/types.js +0 -1
- package/node_modules/@octokit/webhooks/dist-src/sign.js +0 -5
- package/node_modules/@octokit/webhooks/dist-src/to-normalized-json-string.js +0 -9
- package/node_modules/@octokit/webhooks/dist-src/types.js +0 -1
- package/node_modules/@octokit/webhooks/dist-src/verify-and-receive.js +0 -19
- package/node_modules/@octokit/webhooks/dist-src/verify.js +0 -5
- package/node_modules/@octokit/webhooks/dist-types/createLogger.d.ts +0 -7
- package/node_modules/@octokit/webhooks/dist-types/event-handler/index.d.ts +0 -10
- package/node_modules/@octokit/webhooks/dist-types/event-handler/on.d.ts +0 -4
- package/node_modules/@octokit/webhooks/dist-types/event-handler/receive.d.ts +0 -2
- package/node_modules/@octokit/webhooks/dist-types/event-handler/remove-listener.d.ts +0 -2
- package/node_modules/@octokit/webhooks/dist-types/event-handler/wrap-error-handler.d.ts +0 -1
- package/node_modules/@octokit/webhooks/dist-types/generated/webhook-names.d.ts +0 -1
- package/node_modules/@octokit/webhooks/dist-types/index.d.ts +0 -18
- package/node_modules/@octokit/webhooks/dist-types/middleware/node/get-missing-headers.d.ts +0 -3
- package/node_modules/@octokit/webhooks/dist-types/middleware/node/get-payload.d.ts +0 -4
- package/node_modules/@octokit/webhooks/dist-types/middleware/node/index.d.ts +0 -3
- package/node_modules/@octokit/webhooks/dist-types/middleware/node/middleware.d.ts +0 -6
- package/node_modules/@octokit/webhooks/dist-types/middleware/node/on-unhandled-request-default.d.ts +0 -4
- package/node_modules/@octokit/webhooks/dist-types/middleware/node/types.d.ts +0 -9
- package/node_modules/@octokit/webhooks/dist-types/sign.d.ts +0 -1
- package/node_modules/@octokit/webhooks/dist-types/to-normalized-json-string.d.ts +0 -4
- package/node_modules/@octokit/webhooks/dist-types/types.d.ts +0 -62
- package/node_modules/@octokit/webhooks/dist-types/verify-and-receive.d.ts +0 -4
- package/node_modules/@octokit/webhooks/dist-types/verify.d.ts +0 -1
- package/node_modules/@octokit/webhooks/dist-web/index.js +0 -577
- package/node_modules/@octokit/webhooks/dist-web/index.js.map +0 -1
- package/node_modules/@octokit/webhooks-methods/dist-node/index.js.map +0 -1
- package/node_modules/@octokit/webhooks-methods/dist-src/index.js +0 -2
- package/node_modules/@octokit/webhooks-methods/dist-src/node/sign.js +0 -25
- package/node_modules/@octokit/webhooks-methods/dist-src/node/verify.js +0 -23
- package/node_modules/@octokit/webhooks-methods/dist-src/version.js +0 -1
- package/node_modules/@octokit/webhooks-methods/dist-src/web.js +0 -32
- package/node_modules/@octokit/webhooks-methods/dist-types/index.d.ts +0 -2
- package/node_modules/@octokit/webhooks-methods/dist-types/node/sign.d.ts +0 -13
- package/node_modules/@octokit/webhooks-methods/dist-types/node/verify.d.ts +0 -4
- package/node_modules/@octokit/webhooks-methods/dist-types/version.d.ts +0 -1
- package/node_modules/@octokit/webhooks-methods/dist-types/web.d.ts +0 -2
- package/node_modules/@octokit/webhooks-methods/dist-web/index.js +0 -35
- package/node_modules/@octokit/webhooks-methods/dist-web/index.js.map +0 -1
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKDesignSystemVersionWriter.d.ts +0 -14
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKSupernova.d.ts +0 -46
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/data/SDKDataBridge.d.ts +0 -50
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/data/SDKDataCore.d.ts +0 -146
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/elements/SDKElementProperty.d.ts +0 -56
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/themes/SDKTokenTheme.d.ts +0 -63
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/themes/SDKTokenThemeOverride.d.ts +0 -49
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Enterprise/PluginFigmaTokens_Enterprise.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformBlock.d.ts +0 -75
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformUtil.d.ts +0 -26
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/supernova-sdk-typescript.js +0 -2
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/supernova-sdk-typescript.js.map +0 -1
- package/node_modules/@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/package.json +0 -129
- package/node_modules/@supernova-studio/pulsar-core/node_modules/node-fetch/CHANGELOG.md +0 -272
- package/node_modules/@supernova-studio/pulsar-language/LICENSE +0 -21
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/LICENSE +0 -21
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/README.md +0 -144
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/browser-bundle.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKBrand.d.ts +0 -80
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKBrandWriter.d.ts +0 -29
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKDesignSystem.d.ts +0 -68
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKDesignSystemVersion.d.ts +0 -103
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKDesignSystemVersionWriter.d.ts +0 -14
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKDocumentation.d.ts +0 -56
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKSupernova.d.ts +0 -46
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/SDKWorkspace.d.ts +0 -26
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/data/SDKConfiguration.d.ts +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/data/SDKDataBridge.d.ts +0 -50
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/data/SDKDataCore.d.ts +0 -146
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/errors/SDKSupernovaError.d.ts +0 -24
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/resolvers/SDKAssetGroupResolver.d.ts +0 -14
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/resolvers/SDKComponentResolver.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/resolvers/SDKDesignComponentGroupResolver.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/resolvers/SDKDocumentationItemResolver.d.ts +0 -32
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/resolvers/SDKTokenGroupResolver.d.ts +0 -11
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/core/resolvers/SDKTokenResolver.d.ts +0 -76
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/exports.d.ts +0 -117
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/index.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/assets/SDKAsset.d.ts +0 -17
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/assets/SDKRenderedAsset.d.ts +0 -28
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/components/SDKComponent.d.ts +0 -27
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/components/SDKDesignComponent.d.ts +0 -34
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationConfiguration.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationGroup.d.ts +0 -38
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationItem.d.ts +0 -28
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationPage.d.ts +0 -32
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationPageAsset.d.ts +0 -15
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationPageBlock.d.ts +0 -32
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationRichText.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationRichTextSpan.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationRichTextSpanAttribute.d.ts +0 -14
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockAsset.d.ts +0 -15
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockAssets.d.ts +0 -24
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockCallout.d.ts +0 -11
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockCode.d.ts +0 -12
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockColumn.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockColumnItem.d.ts +0 -11
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockCustom.d.ts +0 -16
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockDivider.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedFigma.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedGeneric.d.ts +0 -15
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedLink.d.ts +0 -16
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedStorybook.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedYoutube.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockFrame.d.ts +0 -18
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockFrames.d.ts +0 -26
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockHeading.d.ts +0 -11
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockImage.d.ts +0 -18
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockOrderedList.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockQuote.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockRenderCode.d.ts +0 -34
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockShortcut.d.ts +0 -35
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockShortcuts.d.ts +0 -11
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTab.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTabItem.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTable.d.ts +0 -23
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTableCell.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTableColumn.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTableRow.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockText.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockToken.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTokenGroup.d.ts +0 -12
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTokenList.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockUnorderedList.d.ts +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/builder/SDKDocumentationBlockBuilder.d.ts +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/configuration/SDKDocumentationItemConfiguration.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/documentation/configuration/SDKDocumentationItemHeader.d.ts +0 -30
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/elements/SDKElementDataView.d.ts +0 -30
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/elements/SDKElementDataViewColumn.d.ts +0 -37
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/elements/SDKElementProperty.d.ts +0 -56
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/elements/SDKElementPropertyOption.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/elements/values/SDKElementPropertyValue.d.ts +0 -15
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKAlignment.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKAssetFormat.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKAssetScale.d.ts +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKAssetScaleType.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKBlurType.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKBorderPosition.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationCalloutType.d.ts +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationEnvironment.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationGroupBehavior.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationHeadingType.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationItemType.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationPageAssetType.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationPageBlockThemeType.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationPageBlockType.d.ts +0 -31
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKFrameAlignment.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKFrameLayout.d.ts +0 -11
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKGradientType.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKRichTextSpanAttributeType.d.ts +0 -7
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKShadowType.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKSourceType.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKTextCase.d.ts +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKTextDecoration.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKTokenType.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/enums/SDKUnit.d.ts +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/exporters/SDKExporter.d.ts +0 -74
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/exporters/custom_blocks/SDKExporterCustomBlock.d.ts +0 -23
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/exporters/custom_blocks/SDKExporterCustomBlockProperty.d.ts +0 -32
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/exporters/custom_blocks/SDKExporterCustomBlockVariant.d.ts +0 -12
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/exporters/custom_properties/SDKExporterConfigurationProperty.d.ts +0 -38
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/groups/SDKAssetGroup.d.ts +0 -20
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/groups/SDKDesignComponentGroup.d.ts +0 -33
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/groups/SDKTokenGroup.d.ts +0 -42
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/support/SDKDesignComponentOrigin.d.ts +0 -23
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/support/SDKFrameOrigin.d.ts +0 -25
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/support/SDKSize.d.ts +0 -9
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/support/SDKSource.d.ts +0 -102
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/support/SDKTokenOrigin.d.ts +0 -15
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/support/SDKWorkspaceNPMRegistry.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/themes/SDKThemeUtilities.d.ts +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/themes/SDKTokenTheme.d.ts +0 -63
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/themes/SDKTokenThemeOverride.d.ts +0 -49
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKBlurToken.d.ts +0 -18
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKBorderToken.d.ts +0 -19
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKColorToken.d.ts +0 -23
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKFontToken.d.ts +0 -16
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKGenericToken.d.ts +0 -20
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKGradientToken.d.ts +0 -21
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKMeasureToken.d.ts +0 -26
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKRadiusToken.d.ts +0 -18
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKShadowToken.d.ts +0 -21
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKTextToken.d.ts +0 -16
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKToken.d.ts +0 -30
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKTokenCompator.d.ts +0 -20
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKTokenValue.d.ts +0 -113
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/SDKTypographyToken.d.ts +0 -19
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/remote/SDKRemoteTokenData.d.ts +0 -45
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/remote/SDKRemoteTokenModel.d.ts +0 -62
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/tokens/remote/SDKRemoteTokenValue.d.ts +0 -72
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/model/users/SDKUser.d.ts +0 -22
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/Brand.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/Components.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/DesignSystem.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/DesignSystemVersion.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/Documentation.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/Supernova.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/Theme.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Accessors/Workspace.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Enterprise/PluginFigmaTokens_Enterprise.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Tooling/PluginJSONBuilder.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Tooling/ToolDocSearch.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Tooling/ToolMarkdownTransform.spec.d.ts +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/helpers.d.ts +0 -2
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/SDKToolsDesignTokensPlugin.d.ts +0 -48
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONConverter.d.ts +0 -35
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONGroupBuilder.d.ts +0 -21
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONLoader.d.ts +0 -27
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONParser.d.ts +0 -41
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTMapLoader.d.ts +0 -39
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTMapResolver.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTThemeMerger.d.ts +0 -23
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenGroupTreeMerger.d.ts +0 -23
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenMerger.d.ts +0 -17
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenReferenceResolver.d.ts +0 -48
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenSetResolver.d.ts +0 -12
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/collection/SDKDTTokenCollection.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/expression/SDKDTExpressionParser.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/tree/SDKDTGroupTree.d.ts +0 -10
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/tree/SDKDTGroupTreeNode.d.ts +0 -20
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/tree/SDKDTParentChildMapping.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/json-builder/SDKToolsJSONBuilder.d.ts +0 -57
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementFigmaTokensTransformer.d.ts +0 -40
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementStyleDictionaryTransformer.d.ts +0 -29
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementTransformer.d.ts +0 -77
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransform.d.ts +0 -23
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformBlock.d.ts +0 -75
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransformUtil.d.ts +0 -26
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/search-index/SDKToolsDocSearch.d.ts +0 -47
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tools/token-transform/SDKToolsTokenTransform.d.ts +0 -44
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/utils/FlowUtils.d.ts +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/utils/StringUtils.d.ts +0 -72
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/supernova-sdk-typescript.js +0 -2
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/build/supernova-sdk-typescript.js.map +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/LICENSE +0 -21
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/README.md +0 -482
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/Mutex.js +0 -38
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/MutexInterface.js +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/Semaphore.js +0 -100
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/SemaphoreInterface.js +0 -1
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/errors.js +0 -3
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/index.js +0 -5
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/tryAcquire.js +0 -8
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/es6/withTimeout.js +0 -86
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/index.mjs +0 -201
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/Mutex.d.ts +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/Mutex.js +0 -40
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/MutexInterface.d.ts +0 -18
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/MutexInterface.js +0 -2
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/Semaphore.d.ts +0 -20
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/Semaphore.js +0 -102
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/SemaphoreInterface.d.ts +0 -18
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/SemaphoreInterface.js +0 -2
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/errors.d.ts +0 -3
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/errors.js +0 -6
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/index.d.ts +0 -7
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/index.js +0 -13
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/tryAcquire.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/tryAcquire.js +0 -12
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/withTimeout.d.ts +0 -4
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/lib/withTimeout.js +0 -90
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/node_modules/async-mutex/package.json +0 -88
- package/node_modules/@supernova-studio/pulsar-language/node_modules/@supernovaio/supernova-sdk/package.json +0 -129
- package/node_modules/@supernova-studio/pulsar-language/node_modules/node-fetch/LICENSE.md +0 -22
- package/node_modules/@supernova-studio/pulsar-language/node_modules/node-fetch/README.md +0 -634
- package/node_modules/@supernova-studio/pulsar-language/node_modules/node-fetch/browser.js +0 -25
- package/node_modules/@supernova-studio/pulsar-language/node_modules/node-fetch/lib/index.es.js +0 -1777
- package/node_modules/@supernova-studio/pulsar-language/node_modules/node-fetch/lib/index.js +0 -1787
- package/node_modules/@supernova-studio/pulsar-language/node_modules/node-fetch/lib/index.mjs +0 -1775
- package/node_modules/@supernova-studio/pulsar-language/node_modules/node-fetch/package.json +0 -89
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/definition/SDKDocsBlockItem.d.ts +0 -27
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/model/docs/blocks/properties/SDKDocsBlockEmbedFrameProperty.d.ts +0 -9
- package/node_modules/@supernovaio/sdk/build/sdk-typescript/src/utils/DocumentationUtils.d.ts +0 -2
- package/node_modules/argparse/CHANGELOG.md +0 -185
- package/node_modules/commander/CHANGELOG.md +0 -515
- package/node_modules/deprecation/dist-src/index.js +0 -14
- package/node_modules/deprecation/dist-types/index.d.ts +0 -3
- package/node_modules/deprecation/dist-web/index.js +0 -16
- package/node_modules/esprima/ChangeLog +0 -235
- package/node_modules/expr-eval/CHANGELOG.md +0 -22
- package/node_modules/fuse.js/CHANGELOG.md +0 -326
- package/node_modules/js-yaml/CHANGELOG.md +0 -557
- package/node_modules/octokit/dist-node/index.js.map +0 -1
- package/node_modules/octokit/dist-src/app.js +0 -6
- package/node_modules/octokit/dist-src/index.js +0 -2
- package/node_modules/octokit/dist-src/octokit.js +0 -31
- package/node_modules/octokit/dist-src/version.js +0 -1
- package/node_modules/octokit/dist-types/app.d.ts +0 -89
- package/node_modules/octokit/dist-types/index.d.ts +0 -2
- package/node_modules/octokit/dist-types/octokit.d.ts +0 -9
- package/node_modules/octokit/dist-types/version.d.ts +0 -1
- package/node_modules/octokit/dist-web/index.js +0 -42
- package/node_modules/octokit/dist-web/index.js.map +0 -1
- package/node_modules/pako/CHANGELOG.md +0 -164
- package/node_modules/rimraf/CHANGELOG.md +0 -65
- package/node_modules/tmp/CHANGELOG.md +0 -288
- package/node_modules/ts-dedent/HISTORY.md +0 -27
- package/node_modules/universal-github-app-jwt/dist-node/index.js.map +0 -1
- package/node_modules/universal-github-app-jwt/dist-src/get-token-browser.js +0 -19
- package/node_modules/universal-github-app-jwt/dist-src/get-token.js +0 -6
- package/node_modules/universal-github-app-jwt/dist-src/index.js +0 -23
- package/node_modules/universal-github-app-jwt/dist-src/types.js +0 -1
- package/node_modules/universal-github-app-jwt/dist-src/utils.js +0 -35
- package/node_modules/universal-github-app-jwt/dist-types/get-token-browser.d.ts +0 -2
- package/node_modules/universal-github-app-jwt/dist-types/get-token.d.ts +0 -2
- package/node_modules/universal-github-app-jwt/dist-types/index.d.ts +0 -2
- package/node_modules/universal-github-app-jwt/dist-types/types.d.ts +0 -23
- package/node_modules/universal-github-app-jwt/dist-types/utils.d.ts +0 -4
- package/node_modules/universal-github-app-jwt/dist-web/index.bundled.js.map +0 -1
- package/node_modules/universal-github-app-jwt/dist-web/index.js +0 -80
- package/node_modules/universal-github-app-jwt/dist-web/index.js.map +0 -1
- package/node_modules/universal-user-agent/dist-node/index.js.map +0 -1
- package/node_modules/universal-user-agent/dist-src/index.js +0 -9
- package/node_modules/universal-user-agent/dist-types/index.d.ts +0 -1
- package/node_modules/universal-user-agent/dist-web/index.js +0 -12
- package/node_modules/universal-user-agent/dist-web/index.js.map +0 -1
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/LICENSE +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/README.md +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/browser-bundle.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/SDKBrand.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/SDKBrandWriter.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/SDKDesignSystem.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/SDKDesignSystemVersion.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/SDKDocumentation.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/SDKWorkspace.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/data/SDKConfiguration.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/errors/SDKSupernovaError.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/resolvers/SDKAssetGroupResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/resolvers/SDKComponentResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/resolvers/SDKDesignComponentGroupResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/resolvers/SDKDocumentationItemResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/resolvers/SDKTokenGroupResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/core/resolvers/SDKTokenResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/exports.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/index.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/assets/SDKAsset.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/assets/SDKRenderedAsset.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/components/SDKComponent.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/components/SDKDesignComponent.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationConfiguration.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationGroup.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationItem.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationPage.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationPageAsset.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationPageBlock.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationRichText.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationRichTextSpan.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/SDKDocumentationRichTextSpanAttribute.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockAsset.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockAssets.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockCallout.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockCode.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockColumn.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockColumnItem.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockCustom.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockDivider.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedFigma.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedGeneric.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedLink.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedStorybook.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockEmbedYoutube.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockFrame.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockFrames.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockHeading.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockImage.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockOrderedList.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockQuote.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockRenderCode.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockShortcut.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockShortcuts.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTab.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTabItem.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTable.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTableCell.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTableColumn.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTableRow.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockText.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTokenGroup.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockTokenList.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/blocks/SDKDocumentationPageBlockUnorderedList.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/builder/SDKDocumentationBlockBuilder.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/configuration/SDKDocumentationItemConfiguration.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/documentation/configuration/SDKDocumentationItemHeader.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/elements/SDKElementDataView.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/elements/SDKElementDataViewColumn.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/elements/SDKElementPropertyOption.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/elements/values/SDKElementPropertyValue.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKAlignment.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKAssetFormat.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKAssetScale.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKAssetScaleType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKBlurType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKBorderPosition.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationCalloutType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationEnvironment.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationGroupBehavior.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationHeadingType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationItemType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationPageAssetType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationPageBlockThemeType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKDocumentationPageBlockType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKFrameAlignment.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKFrameLayout.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKGradientType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKRichTextSpanAttributeType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKShadowType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKSourceType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKTextCase.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKTextDecoration.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKTokenType.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/enums/SDKUnit.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/exporters/SDKExporter.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/exporters/custom_blocks/SDKExporterCustomBlock.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/exporters/custom_blocks/SDKExporterCustomBlockProperty.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/exporters/custom_blocks/SDKExporterCustomBlockVariant.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/exporters/custom_properties/SDKExporterConfigurationProperty.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/groups/SDKAssetGroup.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/groups/SDKDesignComponentGroup.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/groups/SDKTokenGroup.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/support/SDKDesignComponentOrigin.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/support/SDKFrameOrigin.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/support/SDKSize.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/support/SDKSource.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/support/SDKTokenOrigin.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/support/SDKWorkspaceNPMRegistry.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/themes/SDKThemeUtilities.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKBlurToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKBorderToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKColorToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKFontToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKGenericToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKGradientToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKMeasureToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKRadiusToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKShadowToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKTextToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKTokenCompator.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKTokenValue.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/SDKTypographyToken.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/remote/SDKRemoteTokenData.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/remote/SDKRemoteTokenModel.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/tokens/remote/SDKRemoteTokenValue.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/model/users/SDKUser.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/Brand.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/Components.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/DesignSystem.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/DesignSystemVersion.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/Documentation.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/Supernova.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/Theme.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Accessors/Workspace.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio/supernova-sdk/build/Typescript/src/tests/Tooling/PluginFigmaTokens.spec.d.ts → @supernovaio/supernova-sdk/build/Typescript/src/tests/Enterprise/Enterprise.spec.d.ts} +0 -0
- /package/node_modules/{@supernova-studio/pulsar-language/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Tooling/PluginFigmaTokens.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Tooling/PluginJSONBuilder.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Tooling/ToolDocSearch.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/Tooling/ToolMarkdownTransform.spec.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tests/helpers.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/SDKToolsDesignTokensPlugin.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONConverter.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONGroupBuilder.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONLoader.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTJSONParser.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTMapLoader.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTMapResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTThemeMerger.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenGroupTreeMerger.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenMerger.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenReferenceResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/SDKDTTokenSetResolver.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/collection/SDKDTTokenCollection.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/expression/SDKDTExpressionParser.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/tree/SDKDTGroupTree.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/tree/SDKDTGroupTreeNode.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/design-tokens/utilities/tree/SDKDTParentChildMapping.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/json-builder/SDKToolsJSONBuilder.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementFigmaTokensTransformer.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementStyleDictionaryTransformer.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/json-builder/elements-transformers/SDKToolsJSONElementTransformer.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/markdown-transform/SDKToolsMarkdownTransform.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/search-index/SDKToolsDocSearch.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/tools/token-transform/SDKToolsTokenTransform.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/utils/FlowUtils.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/build/Typescript/src/utils/StringUtils.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/LICENSE +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/README.md +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/Mutex.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/MutexInterface.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/Semaphore.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/SemaphoreInterface.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/errors.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/index.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/tryAcquire.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/es6/withTimeout.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/index.mjs +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/Mutex.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/Mutex.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/MutexInterface.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/MutexInterface.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/Semaphore.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/Semaphore.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/SemaphoreInterface.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/SemaphoreInterface.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/errors.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/errors.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/index.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/index.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/tryAcquire.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/tryAcquire.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/withTimeout.d.ts +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/lib/withTimeout.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/async-mutex/package.json +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/node-fetch/LICENSE.md +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/node-fetch/README.md +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/node-fetch/browser.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/node-fetch/lib/index.es.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/node-fetch/lib/index.js +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/node-fetch/lib/index.mjs +0 -0
- /package/node_modules/{@supernova-studio/pulsar-core/node_modules/@supernovaio → @supernovaio}/supernova-sdk/node_modules/node-fetch/package.json +0 -0
|
@@ -1,164 +0,0 @@
|
|
|
1
|
-
// Based on https://github.com/bramstein/url-template, licensed under BSD
|
|
2
|
-
// TODO: create separate package.
|
|
3
|
-
//
|
|
4
|
-
// Copyright (c) 2012-2014, Bram Stein
|
|
5
|
-
// All rights reserved.
|
|
6
|
-
// Redistribution and use in source and binary forms, with or without
|
|
7
|
-
// modification, are permitted provided that the following conditions
|
|
8
|
-
// are met:
|
|
9
|
-
// 1. Redistributions of source code must retain the above copyright
|
|
10
|
-
// notice, this list of conditions and the following disclaimer.
|
|
11
|
-
// 2. Redistributions in binary form must reproduce the above copyright
|
|
12
|
-
// notice, this list of conditions and the following disclaimer in the
|
|
13
|
-
// documentation and/or other materials provided with the distribution.
|
|
14
|
-
// 3. The name of the author may not be used to endorse or promote products
|
|
15
|
-
// derived from this software without specific prior written permission.
|
|
16
|
-
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
17
|
-
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
18
|
-
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
19
|
-
// EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
20
|
-
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
21
|
-
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
22
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
23
|
-
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
24
|
-
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
25
|
-
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
26
|
-
/* istanbul ignore file */
|
|
27
|
-
function encodeReserved(str) {
|
|
28
|
-
return str
|
|
29
|
-
.split(/(%[0-9A-Fa-f]{2})/g)
|
|
30
|
-
.map(function (part) {
|
|
31
|
-
if (!/%[0-9A-Fa-f]/.test(part)) {
|
|
32
|
-
part = encodeURI(part).replace(/%5B/g, "[").replace(/%5D/g, "]");
|
|
33
|
-
}
|
|
34
|
-
return part;
|
|
35
|
-
})
|
|
36
|
-
.join("");
|
|
37
|
-
}
|
|
38
|
-
function encodeUnreserved(str) {
|
|
39
|
-
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
|
|
40
|
-
return "%" + c.charCodeAt(0).toString(16).toUpperCase();
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
function encodeValue(operator, value, key) {
|
|
44
|
-
value =
|
|
45
|
-
operator === "+" || operator === "#"
|
|
46
|
-
? encodeReserved(value)
|
|
47
|
-
: encodeUnreserved(value);
|
|
48
|
-
if (key) {
|
|
49
|
-
return encodeUnreserved(key) + "=" + value;
|
|
50
|
-
}
|
|
51
|
-
else {
|
|
52
|
-
return value;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
function isDefined(value) {
|
|
56
|
-
return value !== undefined && value !== null;
|
|
57
|
-
}
|
|
58
|
-
function isKeyOperator(operator) {
|
|
59
|
-
return operator === ";" || operator === "&" || operator === "?";
|
|
60
|
-
}
|
|
61
|
-
function getValues(context, operator, key, modifier) {
|
|
62
|
-
var value = context[key], result = [];
|
|
63
|
-
if (isDefined(value) && value !== "") {
|
|
64
|
-
if (typeof value === "string" ||
|
|
65
|
-
typeof value === "number" ||
|
|
66
|
-
typeof value === "boolean") {
|
|
67
|
-
value = value.toString();
|
|
68
|
-
if (modifier && modifier !== "*") {
|
|
69
|
-
value = value.substring(0, parseInt(modifier, 10));
|
|
70
|
-
}
|
|
71
|
-
result.push(encodeValue(operator, value, isKeyOperator(operator) ? key : ""));
|
|
72
|
-
}
|
|
73
|
-
else {
|
|
74
|
-
if (modifier === "*") {
|
|
75
|
-
if (Array.isArray(value)) {
|
|
76
|
-
value.filter(isDefined).forEach(function (value) {
|
|
77
|
-
result.push(encodeValue(operator, value, isKeyOperator(operator) ? key : ""));
|
|
78
|
-
});
|
|
79
|
-
}
|
|
80
|
-
else {
|
|
81
|
-
Object.keys(value).forEach(function (k) {
|
|
82
|
-
if (isDefined(value[k])) {
|
|
83
|
-
result.push(encodeValue(operator, value[k], k));
|
|
84
|
-
}
|
|
85
|
-
});
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
else {
|
|
89
|
-
const tmp = [];
|
|
90
|
-
if (Array.isArray(value)) {
|
|
91
|
-
value.filter(isDefined).forEach(function (value) {
|
|
92
|
-
tmp.push(encodeValue(operator, value));
|
|
93
|
-
});
|
|
94
|
-
}
|
|
95
|
-
else {
|
|
96
|
-
Object.keys(value).forEach(function (k) {
|
|
97
|
-
if (isDefined(value[k])) {
|
|
98
|
-
tmp.push(encodeUnreserved(k));
|
|
99
|
-
tmp.push(encodeValue(operator, value[k].toString()));
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
}
|
|
103
|
-
if (isKeyOperator(operator)) {
|
|
104
|
-
result.push(encodeUnreserved(key) + "=" + tmp.join(","));
|
|
105
|
-
}
|
|
106
|
-
else if (tmp.length !== 0) {
|
|
107
|
-
result.push(tmp.join(","));
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
else {
|
|
113
|
-
if (operator === ";") {
|
|
114
|
-
if (isDefined(value)) {
|
|
115
|
-
result.push(encodeUnreserved(key));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
else if (value === "" && (operator === "&" || operator === "?")) {
|
|
119
|
-
result.push(encodeUnreserved(key) + "=");
|
|
120
|
-
}
|
|
121
|
-
else if (value === "") {
|
|
122
|
-
result.push("");
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
return result;
|
|
126
|
-
}
|
|
127
|
-
export function parseUrl(template) {
|
|
128
|
-
return {
|
|
129
|
-
expand: expand.bind(null, template),
|
|
130
|
-
};
|
|
131
|
-
}
|
|
132
|
-
function expand(template, context) {
|
|
133
|
-
var operators = ["+", "#", ".", "/", ";", "?", "&"];
|
|
134
|
-
return template.replace(/\{([^\{\}]+)\}|([^\{\}]+)/g, function (_, expression, literal) {
|
|
135
|
-
if (expression) {
|
|
136
|
-
let operator = "";
|
|
137
|
-
const values = [];
|
|
138
|
-
if (operators.indexOf(expression.charAt(0)) !== -1) {
|
|
139
|
-
operator = expression.charAt(0);
|
|
140
|
-
expression = expression.substr(1);
|
|
141
|
-
}
|
|
142
|
-
expression.split(/,/g).forEach(function (variable) {
|
|
143
|
-
var tmp = /([^:\*]*)(?::(\d+)|(\*))?/.exec(variable);
|
|
144
|
-
values.push(getValues(context, operator, tmp[1], tmp[2] || tmp[3]));
|
|
145
|
-
});
|
|
146
|
-
if (operator && operator !== "+") {
|
|
147
|
-
var separator = ",";
|
|
148
|
-
if (operator === "?") {
|
|
149
|
-
separator = "&";
|
|
150
|
-
}
|
|
151
|
-
else if (operator !== "#") {
|
|
152
|
-
separator = operator;
|
|
153
|
-
}
|
|
154
|
-
return (values.length !== 0 ? operator : "") + values.join(separator);
|
|
155
|
-
}
|
|
156
|
-
else {
|
|
157
|
-
return values.join(",");
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
else {
|
|
161
|
-
return encodeReserved(literal);
|
|
162
|
-
}
|
|
163
|
-
});
|
|
164
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const VERSION = "6.0.12";
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { endpointWithDefaults } from "./endpoint-with-defaults";
|
|
2
|
-
import { merge } from "./merge";
|
|
3
|
-
import { parse } from "./parse";
|
|
4
|
-
export function withDefaults(oldDefaults, newDefaults) {
|
|
5
|
-
const DEFAULTS = merge(oldDefaults, newDefaults);
|
|
6
|
-
const endpoint = endpointWithDefaults.bind(null, DEFAULTS);
|
|
7
|
-
return Object.assign(endpoint, {
|
|
8
|
-
DEFAULTS,
|
|
9
|
-
defaults: withDefaults.bind(null, DEFAULTS),
|
|
10
|
-
merge: merge.bind(null, DEFAULTS),
|
|
11
|
-
parse,
|
|
12
|
-
});
|
|
13
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { EndpointOptions, RequestParameters, Route } from "@octokit/types";
|
|
2
|
-
import { DEFAULTS } from "./defaults";
|
|
3
|
-
export declare function endpointWithDefaults(defaults: typeof DEFAULTS, route: Route | EndpointOptions, options?: RequestParameters): import("@octokit/types").RequestOptions;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const endpoint: import("@octokit/types").EndpointInterface<object>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function extractUrlVariableNames(url: string): string[];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function mergeDeep(defaults: any, options: any): object;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function removeUndefinedProperties(obj: any): any;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const VERSION = "6.0.12";
|
|
@@ -1,381 +0,0 @@
|
|
|
1
|
-
import { isPlainObject } from 'is-plain-object';
|
|
2
|
-
import { getUserAgent } from 'universal-user-agent';
|
|
3
|
-
|
|
4
|
-
function lowercaseKeys(object) {
|
|
5
|
-
if (!object) {
|
|
6
|
-
return {};
|
|
7
|
-
}
|
|
8
|
-
return Object.keys(object).reduce((newObj, key) => {
|
|
9
|
-
newObj[key.toLowerCase()] = object[key];
|
|
10
|
-
return newObj;
|
|
11
|
-
}, {});
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
function mergeDeep(defaults, options) {
|
|
15
|
-
const result = Object.assign({}, defaults);
|
|
16
|
-
Object.keys(options).forEach((key) => {
|
|
17
|
-
if (isPlainObject(options[key])) {
|
|
18
|
-
if (!(key in defaults))
|
|
19
|
-
Object.assign(result, { [key]: options[key] });
|
|
20
|
-
else
|
|
21
|
-
result[key] = mergeDeep(defaults[key], options[key]);
|
|
22
|
-
}
|
|
23
|
-
else {
|
|
24
|
-
Object.assign(result, { [key]: options[key] });
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
return result;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
function removeUndefinedProperties(obj) {
|
|
31
|
-
for (const key in obj) {
|
|
32
|
-
if (obj[key] === undefined) {
|
|
33
|
-
delete obj[key];
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
return obj;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
function merge(defaults, route, options) {
|
|
40
|
-
if (typeof route === "string") {
|
|
41
|
-
let [method, url] = route.split(" ");
|
|
42
|
-
options = Object.assign(url ? { method, url } : { url: method }, options);
|
|
43
|
-
}
|
|
44
|
-
else {
|
|
45
|
-
options = Object.assign({}, route);
|
|
46
|
-
}
|
|
47
|
-
// lowercase header names before merging with defaults to avoid duplicates
|
|
48
|
-
options.headers = lowercaseKeys(options.headers);
|
|
49
|
-
// remove properties with undefined values before merging
|
|
50
|
-
removeUndefinedProperties(options);
|
|
51
|
-
removeUndefinedProperties(options.headers);
|
|
52
|
-
const mergedOptions = mergeDeep(defaults || {}, options);
|
|
53
|
-
// mediaType.previews arrays are merged, instead of overwritten
|
|
54
|
-
if (defaults && defaults.mediaType.previews.length) {
|
|
55
|
-
mergedOptions.mediaType.previews = defaults.mediaType.previews
|
|
56
|
-
.filter((preview) => !mergedOptions.mediaType.previews.includes(preview))
|
|
57
|
-
.concat(mergedOptions.mediaType.previews);
|
|
58
|
-
}
|
|
59
|
-
mergedOptions.mediaType.previews = mergedOptions.mediaType.previews.map((preview) => preview.replace(/-preview/, ""));
|
|
60
|
-
return mergedOptions;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
function addQueryParameters(url, parameters) {
|
|
64
|
-
const separator = /\?/.test(url) ? "&" : "?";
|
|
65
|
-
const names = Object.keys(parameters);
|
|
66
|
-
if (names.length === 0) {
|
|
67
|
-
return url;
|
|
68
|
-
}
|
|
69
|
-
return (url +
|
|
70
|
-
separator +
|
|
71
|
-
names
|
|
72
|
-
.map((name) => {
|
|
73
|
-
if (name === "q") {
|
|
74
|
-
return ("q=" + parameters.q.split("+").map(encodeURIComponent).join("+"));
|
|
75
|
-
}
|
|
76
|
-
return `${name}=${encodeURIComponent(parameters[name])}`;
|
|
77
|
-
})
|
|
78
|
-
.join("&"));
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
const urlVariableRegex = /\{[^}]+\}/g;
|
|
82
|
-
function removeNonChars(variableName) {
|
|
83
|
-
return variableName.replace(/^\W+|\W+$/g, "").split(/,/);
|
|
84
|
-
}
|
|
85
|
-
function extractUrlVariableNames(url) {
|
|
86
|
-
const matches = url.match(urlVariableRegex);
|
|
87
|
-
if (!matches) {
|
|
88
|
-
return [];
|
|
89
|
-
}
|
|
90
|
-
return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
function omit(object, keysToOmit) {
|
|
94
|
-
return Object.keys(object)
|
|
95
|
-
.filter((option) => !keysToOmit.includes(option))
|
|
96
|
-
.reduce((obj, key) => {
|
|
97
|
-
obj[key] = object[key];
|
|
98
|
-
return obj;
|
|
99
|
-
}, {});
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
// Based on https://github.com/bramstein/url-template, licensed under BSD
|
|
103
|
-
// TODO: create separate package.
|
|
104
|
-
//
|
|
105
|
-
// Copyright (c) 2012-2014, Bram Stein
|
|
106
|
-
// All rights reserved.
|
|
107
|
-
// Redistribution and use in source and binary forms, with or without
|
|
108
|
-
// modification, are permitted provided that the following conditions
|
|
109
|
-
// are met:
|
|
110
|
-
// 1. Redistributions of source code must retain the above copyright
|
|
111
|
-
// notice, this list of conditions and the following disclaimer.
|
|
112
|
-
// 2. Redistributions in binary form must reproduce the above copyright
|
|
113
|
-
// notice, this list of conditions and the following disclaimer in the
|
|
114
|
-
// documentation and/or other materials provided with the distribution.
|
|
115
|
-
// 3. The name of the author may not be used to endorse or promote products
|
|
116
|
-
// derived from this software without specific prior written permission.
|
|
117
|
-
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
118
|
-
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
119
|
-
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
120
|
-
// EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
121
|
-
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
122
|
-
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
123
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
124
|
-
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
125
|
-
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
126
|
-
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
127
|
-
/* istanbul ignore file */
|
|
128
|
-
function encodeReserved(str) {
|
|
129
|
-
return str
|
|
130
|
-
.split(/(%[0-9A-Fa-f]{2})/g)
|
|
131
|
-
.map(function (part) {
|
|
132
|
-
if (!/%[0-9A-Fa-f]/.test(part)) {
|
|
133
|
-
part = encodeURI(part).replace(/%5B/g, "[").replace(/%5D/g, "]");
|
|
134
|
-
}
|
|
135
|
-
return part;
|
|
136
|
-
})
|
|
137
|
-
.join("");
|
|
138
|
-
}
|
|
139
|
-
function encodeUnreserved(str) {
|
|
140
|
-
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
|
|
141
|
-
return "%" + c.charCodeAt(0).toString(16).toUpperCase();
|
|
142
|
-
});
|
|
143
|
-
}
|
|
144
|
-
function encodeValue(operator, value, key) {
|
|
145
|
-
value =
|
|
146
|
-
operator === "+" || operator === "#"
|
|
147
|
-
? encodeReserved(value)
|
|
148
|
-
: encodeUnreserved(value);
|
|
149
|
-
if (key) {
|
|
150
|
-
return encodeUnreserved(key) + "=" + value;
|
|
151
|
-
}
|
|
152
|
-
else {
|
|
153
|
-
return value;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
function isDefined(value) {
|
|
157
|
-
return value !== undefined && value !== null;
|
|
158
|
-
}
|
|
159
|
-
function isKeyOperator(operator) {
|
|
160
|
-
return operator === ";" || operator === "&" || operator === "?";
|
|
161
|
-
}
|
|
162
|
-
function getValues(context, operator, key, modifier) {
|
|
163
|
-
var value = context[key], result = [];
|
|
164
|
-
if (isDefined(value) && value !== "") {
|
|
165
|
-
if (typeof value === "string" ||
|
|
166
|
-
typeof value === "number" ||
|
|
167
|
-
typeof value === "boolean") {
|
|
168
|
-
value = value.toString();
|
|
169
|
-
if (modifier && modifier !== "*") {
|
|
170
|
-
value = value.substring(0, parseInt(modifier, 10));
|
|
171
|
-
}
|
|
172
|
-
result.push(encodeValue(operator, value, isKeyOperator(operator) ? key : ""));
|
|
173
|
-
}
|
|
174
|
-
else {
|
|
175
|
-
if (modifier === "*") {
|
|
176
|
-
if (Array.isArray(value)) {
|
|
177
|
-
value.filter(isDefined).forEach(function (value) {
|
|
178
|
-
result.push(encodeValue(operator, value, isKeyOperator(operator) ? key : ""));
|
|
179
|
-
});
|
|
180
|
-
}
|
|
181
|
-
else {
|
|
182
|
-
Object.keys(value).forEach(function (k) {
|
|
183
|
-
if (isDefined(value[k])) {
|
|
184
|
-
result.push(encodeValue(operator, value[k], k));
|
|
185
|
-
}
|
|
186
|
-
});
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
else {
|
|
190
|
-
const tmp = [];
|
|
191
|
-
if (Array.isArray(value)) {
|
|
192
|
-
value.filter(isDefined).forEach(function (value) {
|
|
193
|
-
tmp.push(encodeValue(operator, value));
|
|
194
|
-
});
|
|
195
|
-
}
|
|
196
|
-
else {
|
|
197
|
-
Object.keys(value).forEach(function (k) {
|
|
198
|
-
if (isDefined(value[k])) {
|
|
199
|
-
tmp.push(encodeUnreserved(k));
|
|
200
|
-
tmp.push(encodeValue(operator, value[k].toString()));
|
|
201
|
-
}
|
|
202
|
-
});
|
|
203
|
-
}
|
|
204
|
-
if (isKeyOperator(operator)) {
|
|
205
|
-
result.push(encodeUnreserved(key) + "=" + tmp.join(","));
|
|
206
|
-
}
|
|
207
|
-
else if (tmp.length !== 0) {
|
|
208
|
-
result.push(tmp.join(","));
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
else {
|
|
214
|
-
if (operator === ";") {
|
|
215
|
-
if (isDefined(value)) {
|
|
216
|
-
result.push(encodeUnreserved(key));
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
else if (value === "" && (operator === "&" || operator === "?")) {
|
|
220
|
-
result.push(encodeUnreserved(key) + "=");
|
|
221
|
-
}
|
|
222
|
-
else if (value === "") {
|
|
223
|
-
result.push("");
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
return result;
|
|
227
|
-
}
|
|
228
|
-
function parseUrl(template) {
|
|
229
|
-
return {
|
|
230
|
-
expand: expand.bind(null, template),
|
|
231
|
-
};
|
|
232
|
-
}
|
|
233
|
-
function expand(template, context) {
|
|
234
|
-
var operators = ["+", "#", ".", "/", ";", "?", "&"];
|
|
235
|
-
return template.replace(/\{([^\{\}]+)\}|([^\{\}]+)/g, function (_, expression, literal) {
|
|
236
|
-
if (expression) {
|
|
237
|
-
let operator = "";
|
|
238
|
-
const values = [];
|
|
239
|
-
if (operators.indexOf(expression.charAt(0)) !== -1) {
|
|
240
|
-
operator = expression.charAt(0);
|
|
241
|
-
expression = expression.substr(1);
|
|
242
|
-
}
|
|
243
|
-
expression.split(/,/g).forEach(function (variable) {
|
|
244
|
-
var tmp = /([^:\*]*)(?::(\d+)|(\*))?/.exec(variable);
|
|
245
|
-
values.push(getValues(context, operator, tmp[1], tmp[2] || tmp[3]));
|
|
246
|
-
});
|
|
247
|
-
if (operator && operator !== "+") {
|
|
248
|
-
var separator = ",";
|
|
249
|
-
if (operator === "?") {
|
|
250
|
-
separator = "&";
|
|
251
|
-
}
|
|
252
|
-
else if (operator !== "#") {
|
|
253
|
-
separator = operator;
|
|
254
|
-
}
|
|
255
|
-
return (values.length !== 0 ? operator : "") + values.join(separator);
|
|
256
|
-
}
|
|
257
|
-
else {
|
|
258
|
-
return values.join(",");
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
else {
|
|
262
|
-
return encodeReserved(literal);
|
|
263
|
-
}
|
|
264
|
-
});
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
function parse(options) {
|
|
268
|
-
// https://fetch.spec.whatwg.org/#methods
|
|
269
|
-
let method = options.method.toUpperCase();
|
|
270
|
-
// replace :varname with {varname} to make it RFC 6570 compatible
|
|
271
|
-
let url = (options.url || "/").replace(/:([a-z]\w+)/g, "{$1}");
|
|
272
|
-
let headers = Object.assign({}, options.headers);
|
|
273
|
-
let body;
|
|
274
|
-
let parameters = omit(options, [
|
|
275
|
-
"method",
|
|
276
|
-
"baseUrl",
|
|
277
|
-
"url",
|
|
278
|
-
"headers",
|
|
279
|
-
"request",
|
|
280
|
-
"mediaType",
|
|
281
|
-
]);
|
|
282
|
-
// extract variable names from URL to calculate remaining variables later
|
|
283
|
-
const urlVariableNames = extractUrlVariableNames(url);
|
|
284
|
-
url = parseUrl(url).expand(parameters);
|
|
285
|
-
if (!/^http/.test(url)) {
|
|
286
|
-
url = options.baseUrl + url;
|
|
287
|
-
}
|
|
288
|
-
const omittedParameters = Object.keys(options)
|
|
289
|
-
.filter((option) => urlVariableNames.includes(option))
|
|
290
|
-
.concat("baseUrl");
|
|
291
|
-
const remainingParameters = omit(parameters, omittedParameters);
|
|
292
|
-
const isBinaryRequest = /application\/octet-stream/i.test(headers.accept);
|
|
293
|
-
if (!isBinaryRequest) {
|
|
294
|
-
if (options.mediaType.format) {
|
|
295
|
-
// e.g. application/vnd.github.v3+json => application/vnd.github.v3.raw
|
|
296
|
-
headers.accept = headers.accept
|
|
297
|
-
.split(/,/)
|
|
298
|
-
.map((preview) => preview.replace(/application\/vnd(\.\w+)(\.v3)?(\.\w+)?(\+json)?$/, `application/vnd$1$2.${options.mediaType.format}`))
|
|
299
|
-
.join(",");
|
|
300
|
-
}
|
|
301
|
-
if (options.mediaType.previews.length) {
|
|
302
|
-
const previewsFromAcceptHeader = headers.accept.match(/[\w-]+(?=-preview)/g) || [];
|
|
303
|
-
headers.accept = previewsFromAcceptHeader
|
|
304
|
-
.concat(options.mediaType.previews)
|
|
305
|
-
.map((preview) => {
|
|
306
|
-
const format = options.mediaType.format
|
|
307
|
-
? `.${options.mediaType.format}`
|
|
308
|
-
: "+json";
|
|
309
|
-
return `application/vnd.github.${preview}-preview${format}`;
|
|
310
|
-
})
|
|
311
|
-
.join(",");
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
// for GET/HEAD requests, set URL query parameters from remaining parameters
|
|
315
|
-
// for PATCH/POST/PUT/DELETE requests, set request body from remaining parameters
|
|
316
|
-
if (["GET", "HEAD"].includes(method)) {
|
|
317
|
-
url = addQueryParameters(url, remainingParameters);
|
|
318
|
-
}
|
|
319
|
-
else {
|
|
320
|
-
if ("data" in remainingParameters) {
|
|
321
|
-
body = remainingParameters.data;
|
|
322
|
-
}
|
|
323
|
-
else {
|
|
324
|
-
if (Object.keys(remainingParameters).length) {
|
|
325
|
-
body = remainingParameters;
|
|
326
|
-
}
|
|
327
|
-
else {
|
|
328
|
-
headers["content-length"] = 0;
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
// default content-type for JSON if body is set
|
|
333
|
-
if (!headers["content-type"] && typeof body !== "undefined") {
|
|
334
|
-
headers["content-type"] = "application/json; charset=utf-8";
|
|
335
|
-
}
|
|
336
|
-
// GitHub expects 'content-length: 0' header for PUT/PATCH requests without body.
|
|
337
|
-
// fetch does not allow to set `content-length` header, but we can set body to an empty string
|
|
338
|
-
if (["PATCH", "PUT"].includes(method) && typeof body === "undefined") {
|
|
339
|
-
body = "";
|
|
340
|
-
}
|
|
341
|
-
// Only return body/request keys if present
|
|
342
|
-
return Object.assign({ method, url, headers }, typeof body !== "undefined" ? { body } : null, options.request ? { request: options.request } : null);
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
function endpointWithDefaults(defaults, route, options) {
|
|
346
|
-
return parse(merge(defaults, route, options));
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
function withDefaults(oldDefaults, newDefaults) {
|
|
350
|
-
const DEFAULTS = merge(oldDefaults, newDefaults);
|
|
351
|
-
const endpoint = endpointWithDefaults.bind(null, DEFAULTS);
|
|
352
|
-
return Object.assign(endpoint, {
|
|
353
|
-
DEFAULTS,
|
|
354
|
-
defaults: withDefaults.bind(null, DEFAULTS),
|
|
355
|
-
merge: merge.bind(null, DEFAULTS),
|
|
356
|
-
parse,
|
|
357
|
-
});
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
const VERSION = "6.0.12";
|
|
361
|
-
|
|
362
|
-
const userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`;
|
|
363
|
-
// DEFAULTS has all properties set that EndpointOptions has, except url.
|
|
364
|
-
// So we use RequestParameters and add method as additional required property.
|
|
365
|
-
const DEFAULTS = {
|
|
366
|
-
method: "GET",
|
|
367
|
-
baseUrl: "https://api.github.com",
|
|
368
|
-
headers: {
|
|
369
|
-
accept: "application/vnd.github.v3+json",
|
|
370
|
-
"user-agent": userAgent,
|
|
371
|
-
},
|
|
372
|
-
mediaType: {
|
|
373
|
-
format: "",
|
|
374
|
-
previews: [],
|
|
375
|
-
},
|
|
376
|
-
};
|
|
377
|
-
|
|
378
|
-
const endpoint = withDefaults(null, DEFAULTS);
|
|
379
|
-
|
|
380
|
-
export { endpoint };
|
|
381
|
-
//# sourceMappingURL=index.js.map
|