@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,1745 +0,0 @@
|
|
|
1
|
-
const Endpoints = {
|
|
2
|
-
actions: {
|
|
3
|
-
addCustomLabelsToSelfHostedRunnerForOrg: [
|
|
4
|
-
"POST /orgs/{org}/actions/runners/{runner_id}/labels",
|
|
5
|
-
],
|
|
6
|
-
addCustomLabelsToSelfHostedRunnerForRepo: [
|
|
7
|
-
"POST /repos/{owner}/{repo}/actions/runners/{runner_id}/labels",
|
|
8
|
-
],
|
|
9
|
-
addSelectedRepoToOrgSecret: [
|
|
10
|
-
"PUT /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}",
|
|
11
|
-
],
|
|
12
|
-
approveWorkflowRun: [
|
|
13
|
-
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/approve",
|
|
14
|
-
],
|
|
15
|
-
cancelWorkflowRun: [
|
|
16
|
-
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel",
|
|
17
|
-
],
|
|
18
|
-
createOrUpdateEnvironmentSecret: [
|
|
19
|
-
"PUT /repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}",
|
|
20
|
-
],
|
|
21
|
-
createOrUpdateOrgSecret: ["PUT /orgs/{org}/actions/secrets/{secret_name}"],
|
|
22
|
-
createOrUpdateRepoSecret: [
|
|
23
|
-
"PUT /repos/{owner}/{repo}/actions/secrets/{secret_name}",
|
|
24
|
-
],
|
|
25
|
-
createRegistrationTokenForOrg: [
|
|
26
|
-
"POST /orgs/{org}/actions/runners/registration-token",
|
|
27
|
-
],
|
|
28
|
-
createRegistrationTokenForRepo: [
|
|
29
|
-
"POST /repos/{owner}/{repo}/actions/runners/registration-token",
|
|
30
|
-
],
|
|
31
|
-
createRemoveTokenForOrg: ["POST /orgs/{org}/actions/runners/remove-token"],
|
|
32
|
-
createRemoveTokenForRepo: [
|
|
33
|
-
"POST /repos/{owner}/{repo}/actions/runners/remove-token",
|
|
34
|
-
],
|
|
35
|
-
createWorkflowDispatch: [
|
|
36
|
-
"POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches",
|
|
37
|
-
],
|
|
38
|
-
deleteActionsCacheById: [
|
|
39
|
-
"DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}",
|
|
40
|
-
],
|
|
41
|
-
deleteActionsCacheByKey: [
|
|
42
|
-
"DELETE /repos/{owner}/{repo}/actions/caches{?key,ref}",
|
|
43
|
-
],
|
|
44
|
-
deleteArtifact: [
|
|
45
|
-
"DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}",
|
|
46
|
-
],
|
|
47
|
-
deleteEnvironmentSecret: [
|
|
48
|
-
"DELETE /repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}",
|
|
49
|
-
],
|
|
50
|
-
deleteOrgSecret: ["DELETE /orgs/{org}/actions/secrets/{secret_name}"],
|
|
51
|
-
deleteRepoSecret: [
|
|
52
|
-
"DELETE /repos/{owner}/{repo}/actions/secrets/{secret_name}",
|
|
53
|
-
],
|
|
54
|
-
deleteSelfHostedRunnerFromOrg: [
|
|
55
|
-
"DELETE /orgs/{org}/actions/runners/{runner_id}",
|
|
56
|
-
],
|
|
57
|
-
deleteSelfHostedRunnerFromRepo: [
|
|
58
|
-
"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}",
|
|
59
|
-
],
|
|
60
|
-
deleteWorkflowRun: ["DELETE /repos/{owner}/{repo}/actions/runs/{run_id}"],
|
|
61
|
-
deleteWorkflowRunLogs: [
|
|
62
|
-
"DELETE /repos/{owner}/{repo}/actions/runs/{run_id}/logs",
|
|
63
|
-
],
|
|
64
|
-
disableSelectedRepositoryGithubActionsOrganization: [
|
|
65
|
-
"DELETE /orgs/{org}/actions/permissions/repositories/{repository_id}",
|
|
66
|
-
],
|
|
67
|
-
disableWorkflow: [
|
|
68
|
-
"PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable",
|
|
69
|
-
],
|
|
70
|
-
downloadArtifact: [
|
|
71
|
-
"GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}",
|
|
72
|
-
],
|
|
73
|
-
downloadJobLogsForWorkflowRun: [
|
|
74
|
-
"GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs",
|
|
75
|
-
],
|
|
76
|
-
downloadWorkflowRunAttemptLogs: [
|
|
77
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs",
|
|
78
|
-
],
|
|
79
|
-
downloadWorkflowRunLogs: [
|
|
80
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/logs",
|
|
81
|
-
],
|
|
82
|
-
enableSelectedRepositoryGithubActionsOrganization: [
|
|
83
|
-
"PUT /orgs/{org}/actions/permissions/repositories/{repository_id}",
|
|
84
|
-
],
|
|
85
|
-
enableWorkflow: [
|
|
86
|
-
"PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable",
|
|
87
|
-
],
|
|
88
|
-
getActionsCacheList: ["GET /repos/{owner}/{repo}/actions/caches"],
|
|
89
|
-
getActionsCacheUsage: ["GET /repos/{owner}/{repo}/actions/cache/usage"],
|
|
90
|
-
getActionsCacheUsageByRepoForOrg: [
|
|
91
|
-
"GET /orgs/{org}/actions/cache/usage-by-repository",
|
|
92
|
-
],
|
|
93
|
-
getActionsCacheUsageForEnterprise: [
|
|
94
|
-
"GET /enterprises/{enterprise}/actions/cache/usage",
|
|
95
|
-
],
|
|
96
|
-
getActionsCacheUsageForOrg: ["GET /orgs/{org}/actions/cache/usage"],
|
|
97
|
-
getAllowedActionsOrganization: [
|
|
98
|
-
"GET /orgs/{org}/actions/permissions/selected-actions",
|
|
99
|
-
],
|
|
100
|
-
getAllowedActionsRepository: [
|
|
101
|
-
"GET /repos/{owner}/{repo}/actions/permissions/selected-actions",
|
|
102
|
-
],
|
|
103
|
-
getArtifact: ["GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"],
|
|
104
|
-
getEnvironmentPublicKey: [
|
|
105
|
-
"GET /repositories/{repository_id}/environments/{environment_name}/secrets/public-key",
|
|
106
|
-
],
|
|
107
|
-
getEnvironmentSecret: [
|
|
108
|
-
"GET /repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}",
|
|
109
|
-
],
|
|
110
|
-
getGithubActionsDefaultWorkflowPermissionsEnterprise: [
|
|
111
|
-
"GET /enterprises/{enterprise}/actions/permissions/workflow",
|
|
112
|
-
],
|
|
113
|
-
getGithubActionsDefaultWorkflowPermissionsOrganization: [
|
|
114
|
-
"GET /orgs/{org}/actions/permissions/workflow",
|
|
115
|
-
],
|
|
116
|
-
getGithubActionsDefaultWorkflowPermissionsRepository: [
|
|
117
|
-
"GET /repos/{owner}/{repo}/actions/permissions/workflow",
|
|
118
|
-
],
|
|
119
|
-
getGithubActionsPermissionsOrganization: [
|
|
120
|
-
"GET /orgs/{org}/actions/permissions",
|
|
121
|
-
],
|
|
122
|
-
getGithubActionsPermissionsRepository: [
|
|
123
|
-
"GET /repos/{owner}/{repo}/actions/permissions",
|
|
124
|
-
],
|
|
125
|
-
getJobForWorkflowRun: ["GET /repos/{owner}/{repo}/actions/jobs/{job_id}"],
|
|
126
|
-
getOrgPublicKey: ["GET /orgs/{org}/actions/secrets/public-key"],
|
|
127
|
-
getOrgSecret: ["GET /orgs/{org}/actions/secrets/{secret_name}"],
|
|
128
|
-
getPendingDeploymentsForRun: [
|
|
129
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments",
|
|
130
|
-
],
|
|
131
|
-
getRepoPermissions: [
|
|
132
|
-
"GET /repos/{owner}/{repo}/actions/permissions",
|
|
133
|
-
{},
|
|
134
|
-
{ renamed: ["actions", "getGithubActionsPermissionsRepository"] },
|
|
135
|
-
],
|
|
136
|
-
getRepoPublicKey: ["GET /repos/{owner}/{repo}/actions/secrets/public-key"],
|
|
137
|
-
getRepoSecret: ["GET /repos/{owner}/{repo}/actions/secrets/{secret_name}"],
|
|
138
|
-
getReviewsForRun: [
|
|
139
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/approvals",
|
|
140
|
-
],
|
|
141
|
-
getSelfHostedRunnerForOrg: ["GET /orgs/{org}/actions/runners/{runner_id}"],
|
|
142
|
-
getSelfHostedRunnerForRepo: [
|
|
143
|
-
"GET /repos/{owner}/{repo}/actions/runners/{runner_id}",
|
|
144
|
-
],
|
|
145
|
-
getWorkflow: ["GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}"],
|
|
146
|
-
getWorkflowAccessToRepository: [
|
|
147
|
-
"GET /repos/{owner}/{repo}/actions/permissions/access",
|
|
148
|
-
],
|
|
149
|
-
getWorkflowRun: ["GET /repos/{owner}/{repo}/actions/runs/{run_id}"],
|
|
150
|
-
getWorkflowRunAttempt: [
|
|
151
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}",
|
|
152
|
-
],
|
|
153
|
-
getWorkflowRunUsage: [
|
|
154
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing",
|
|
155
|
-
],
|
|
156
|
-
getWorkflowUsage: [
|
|
157
|
-
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing",
|
|
158
|
-
],
|
|
159
|
-
listArtifactsForRepo: ["GET /repos/{owner}/{repo}/actions/artifacts"],
|
|
160
|
-
listEnvironmentSecrets: [
|
|
161
|
-
"GET /repositories/{repository_id}/environments/{environment_name}/secrets",
|
|
162
|
-
],
|
|
163
|
-
listJobsForWorkflowRun: [
|
|
164
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs",
|
|
165
|
-
],
|
|
166
|
-
listJobsForWorkflowRunAttempt: [
|
|
167
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs",
|
|
168
|
-
],
|
|
169
|
-
listLabelsForSelfHostedRunnerForOrg: [
|
|
170
|
-
"GET /orgs/{org}/actions/runners/{runner_id}/labels",
|
|
171
|
-
],
|
|
172
|
-
listLabelsForSelfHostedRunnerForRepo: [
|
|
173
|
-
"GET /repos/{owner}/{repo}/actions/runners/{runner_id}/labels",
|
|
174
|
-
],
|
|
175
|
-
listOrgSecrets: ["GET /orgs/{org}/actions/secrets"],
|
|
176
|
-
listRepoSecrets: ["GET /repos/{owner}/{repo}/actions/secrets"],
|
|
177
|
-
listRepoWorkflows: ["GET /repos/{owner}/{repo}/actions/workflows"],
|
|
178
|
-
listRunnerApplicationsForOrg: ["GET /orgs/{org}/actions/runners/downloads"],
|
|
179
|
-
listRunnerApplicationsForRepo: [
|
|
180
|
-
"GET /repos/{owner}/{repo}/actions/runners/downloads",
|
|
181
|
-
],
|
|
182
|
-
listSelectedReposForOrgSecret: [
|
|
183
|
-
"GET /orgs/{org}/actions/secrets/{secret_name}/repositories",
|
|
184
|
-
],
|
|
185
|
-
listSelectedRepositoriesEnabledGithubActionsOrganization: [
|
|
186
|
-
"GET /orgs/{org}/actions/permissions/repositories",
|
|
187
|
-
],
|
|
188
|
-
listSelfHostedRunnersForOrg: ["GET /orgs/{org}/actions/runners"],
|
|
189
|
-
listSelfHostedRunnersForRepo: ["GET /repos/{owner}/{repo}/actions/runners"],
|
|
190
|
-
listWorkflowRunArtifacts: [
|
|
191
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts",
|
|
192
|
-
],
|
|
193
|
-
listWorkflowRuns: [
|
|
194
|
-
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs",
|
|
195
|
-
],
|
|
196
|
-
listWorkflowRunsForRepo: ["GET /repos/{owner}/{repo}/actions/runs"],
|
|
197
|
-
reRunJobForWorkflowRun: [
|
|
198
|
-
"POST /repos/{owner}/{repo}/actions/jobs/{job_id}/rerun",
|
|
199
|
-
],
|
|
200
|
-
reRunWorkflow: ["POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun"],
|
|
201
|
-
reRunWorkflowFailedJobs: [
|
|
202
|
-
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs",
|
|
203
|
-
],
|
|
204
|
-
removeAllCustomLabelsFromSelfHostedRunnerForOrg: [
|
|
205
|
-
"DELETE /orgs/{org}/actions/runners/{runner_id}/labels",
|
|
206
|
-
],
|
|
207
|
-
removeAllCustomLabelsFromSelfHostedRunnerForRepo: [
|
|
208
|
-
"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels",
|
|
209
|
-
],
|
|
210
|
-
removeCustomLabelFromSelfHostedRunnerForOrg: [
|
|
211
|
-
"DELETE /orgs/{org}/actions/runners/{runner_id}/labels/{name}",
|
|
212
|
-
],
|
|
213
|
-
removeCustomLabelFromSelfHostedRunnerForRepo: [
|
|
214
|
-
"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}",
|
|
215
|
-
],
|
|
216
|
-
removeSelectedRepoFromOrgSecret: [
|
|
217
|
-
"DELETE /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}",
|
|
218
|
-
],
|
|
219
|
-
reviewPendingDeploymentsForRun: [
|
|
220
|
-
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments",
|
|
221
|
-
],
|
|
222
|
-
setAllowedActionsOrganization: [
|
|
223
|
-
"PUT /orgs/{org}/actions/permissions/selected-actions",
|
|
224
|
-
],
|
|
225
|
-
setAllowedActionsRepository: [
|
|
226
|
-
"PUT /repos/{owner}/{repo}/actions/permissions/selected-actions",
|
|
227
|
-
],
|
|
228
|
-
setCustomLabelsForSelfHostedRunnerForOrg: [
|
|
229
|
-
"PUT /orgs/{org}/actions/runners/{runner_id}/labels",
|
|
230
|
-
],
|
|
231
|
-
setCustomLabelsForSelfHostedRunnerForRepo: [
|
|
232
|
-
"PUT /repos/{owner}/{repo}/actions/runners/{runner_id}/labels",
|
|
233
|
-
],
|
|
234
|
-
setGithubActionsDefaultWorkflowPermissionsEnterprise: [
|
|
235
|
-
"PUT /enterprises/{enterprise}/actions/permissions/workflow",
|
|
236
|
-
],
|
|
237
|
-
setGithubActionsDefaultWorkflowPermissionsOrganization: [
|
|
238
|
-
"PUT /orgs/{org}/actions/permissions/workflow",
|
|
239
|
-
],
|
|
240
|
-
setGithubActionsDefaultWorkflowPermissionsRepository: [
|
|
241
|
-
"PUT /repos/{owner}/{repo}/actions/permissions/workflow",
|
|
242
|
-
],
|
|
243
|
-
setGithubActionsPermissionsOrganization: [
|
|
244
|
-
"PUT /orgs/{org}/actions/permissions",
|
|
245
|
-
],
|
|
246
|
-
setGithubActionsPermissionsRepository: [
|
|
247
|
-
"PUT /repos/{owner}/{repo}/actions/permissions",
|
|
248
|
-
],
|
|
249
|
-
setSelectedReposForOrgSecret: [
|
|
250
|
-
"PUT /orgs/{org}/actions/secrets/{secret_name}/repositories",
|
|
251
|
-
],
|
|
252
|
-
setSelectedRepositoriesEnabledGithubActionsOrganization: [
|
|
253
|
-
"PUT /orgs/{org}/actions/permissions/repositories",
|
|
254
|
-
],
|
|
255
|
-
setWorkflowAccessToRepository: [
|
|
256
|
-
"PUT /repos/{owner}/{repo}/actions/permissions/access",
|
|
257
|
-
],
|
|
258
|
-
},
|
|
259
|
-
activity: {
|
|
260
|
-
checkRepoIsStarredByAuthenticatedUser: ["GET /user/starred/{owner}/{repo}"],
|
|
261
|
-
deleteRepoSubscription: ["DELETE /repos/{owner}/{repo}/subscription"],
|
|
262
|
-
deleteThreadSubscription: [
|
|
263
|
-
"DELETE /notifications/threads/{thread_id}/subscription",
|
|
264
|
-
],
|
|
265
|
-
getFeeds: ["GET /feeds"],
|
|
266
|
-
getRepoSubscription: ["GET /repos/{owner}/{repo}/subscription"],
|
|
267
|
-
getThread: ["GET /notifications/threads/{thread_id}"],
|
|
268
|
-
getThreadSubscriptionForAuthenticatedUser: [
|
|
269
|
-
"GET /notifications/threads/{thread_id}/subscription",
|
|
270
|
-
],
|
|
271
|
-
listEventsForAuthenticatedUser: ["GET /users/{username}/events"],
|
|
272
|
-
listNotificationsForAuthenticatedUser: ["GET /notifications"],
|
|
273
|
-
listOrgEventsForAuthenticatedUser: [
|
|
274
|
-
"GET /users/{username}/events/orgs/{org}",
|
|
275
|
-
],
|
|
276
|
-
listPublicEvents: ["GET /events"],
|
|
277
|
-
listPublicEventsForRepoNetwork: ["GET /networks/{owner}/{repo}/events"],
|
|
278
|
-
listPublicEventsForUser: ["GET /users/{username}/events/public"],
|
|
279
|
-
listPublicOrgEvents: ["GET /orgs/{org}/events"],
|
|
280
|
-
listReceivedEventsForUser: ["GET /users/{username}/received_events"],
|
|
281
|
-
listReceivedPublicEventsForUser: [
|
|
282
|
-
"GET /users/{username}/received_events/public",
|
|
283
|
-
],
|
|
284
|
-
listRepoEvents: ["GET /repos/{owner}/{repo}/events"],
|
|
285
|
-
listRepoNotificationsForAuthenticatedUser: [
|
|
286
|
-
"GET /repos/{owner}/{repo}/notifications",
|
|
287
|
-
],
|
|
288
|
-
listReposStarredByAuthenticatedUser: ["GET /user/starred"],
|
|
289
|
-
listReposStarredByUser: ["GET /users/{username}/starred"],
|
|
290
|
-
listReposWatchedByUser: ["GET /users/{username}/subscriptions"],
|
|
291
|
-
listStargazersForRepo: ["GET /repos/{owner}/{repo}/stargazers"],
|
|
292
|
-
listWatchedReposForAuthenticatedUser: ["GET /user/subscriptions"],
|
|
293
|
-
listWatchersForRepo: ["GET /repos/{owner}/{repo}/subscribers"],
|
|
294
|
-
markNotificationsAsRead: ["PUT /notifications"],
|
|
295
|
-
markRepoNotificationsAsRead: ["PUT /repos/{owner}/{repo}/notifications"],
|
|
296
|
-
markThreadAsRead: ["PATCH /notifications/threads/{thread_id}"],
|
|
297
|
-
setRepoSubscription: ["PUT /repos/{owner}/{repo}/subscription"],
|
|
298
|
-
setThreadSubscription: [
|
|
299
|
-
"PUT /notifications/threads/{thread_id}/subscription",
|
|
300
|
-
],
|
|
301
|
-
starRepoForAuthenticatedUser: ["PUT /user/starred/{owner}/{repo}"],
|
|
302
|
-
unstarRepoForAuthenticatedUser: ["DELETE /user/starred/{owner}/{repo}"],
|
|
303
|
-
},
|
|
304
|
-
apps: {
|
|
305
|
-
addRepoToInstallation: [
|
|
306
|
-
"PUT /user/installations/{installation_id}/repositories/{repository_id}",
|
|
307
|
-
{},
|
|
308
|
-
{ renamed: ["apps", "addRepoToInstallationForAuthenticatedUser"] },
|
|
309
|
-
],
|
|
310
|
-
addRepoToInstallationForAuthenticatedUser: [
|
|
311
|
-
"PUT /user/installations/{installation_id}/repositories/{repository_id}",
|
|
312
|
-
],
|
|
313
|
-
checkToken: ["POST /applications/{client_id}/token"],
|
|
314
|
-
createFromManifest: ["POST /app-manifests/{code}/conversions"],
|
|
315
|
-
createInstallationAccessToken: [
|
|
316
|
-
"POST /app/installations/{installation_id}/access_tokens",
|
|
317
|
-
],
|
|
318
|
-
deleteAuthorization: ["DELETE /applications/{client_id}/grant"],
|
|
319
|
-
deleteInstallation: ["DELETE /app/installations/{installation_id}"],
|
|
320
|
-
deleteToken: ["DELETE /applications/{client_id}/token"],
|
|
321
|
-
getAuthenticated: ["GET /app"],
|
|
322
|
-
getBySlug: ["GET /apps/{app_slug}"],
|
|
323
|
-
getInstallation: ["GET /app/installations/{installation_id}"],
|
|
324
|
-
getOrgInstallation: ["GET /orgs/{org}/installation"],
|
|
325
|
-
getRepoInstallation: ["GET /repos/{owner}/{repo}/installation"],
|
|
326
|
-
getSubscriptionPlanForAccount: [
|
|
327
|
-
"GET /marketplace_listing/accounts/{account_id}",
|
|
328
|
-
],
|
|
329
|
-
getSubscriptionPlanForAccountStubbed: [
|
|
330
|
-
"GET /marketplace_listing/stubbed/accounts/{account_id}",
|
|
331
|
-
],
|
|
332
|
-
getUserInstallation: ["GET /users/{username}/installation"],
|
|
333
|
-
getWebhookConfigForApp: ["GET /app/hook/config"],
|
|
334
|
-
getWebhookDelivery: ["GET /app/hook/deliveries/{delivery_id}"],
|
|
335
|
-
listAccountsForPlan: ["GET /marketplace_listing/plans/{plan_id}/accounts"],
|
|
336
|
-
listAccountsForPlanStubbed: [
|
|
337
|
-
"GET /marketplace_listing/stubbed/plans/{plan_id}/accounts",
|
|
338
|
-
],
|
|
339
|
-
listInstallationReposForAuthenticatedUser: [
|
|
340
|
-
"GET /user/installations/{installation_id}/repositories",
|
|
341
|
-
],
|
|
342
|
-
listInstallations: ["GET /app/installations"],
|
|
343
|
-
listInstallationsForAuthenticatedUser: ["GET /user/installations"],
|
|
344
|
-
listPlans: ["GET /marketplace_listing/plans"],
|
|
345
|
-
listPlansStubbed: ["GET /marketplace_listing/stubbed/plans"],
|
|
346
|
-
listReposAccessibleToInstallation: ["GET /installation/repositories"],
|
|
347
|
-
listSubscriptionsForAuthenticatedUser: ["GET /user/marketplace_purchases"],
|
|
348
|
-
listSubscriptionsForAuthenticatedUserStubbed: [
|
|
349
|
-
"GET /user/marketplace_purchases/stubbed",
|
|
350
|
-
],
|
|
351
|
-
listWebhookDeliveries: ["GET /app/hook/deliveries"],
|
|
352
|
-
redeliverWebhookDelivery: [
|
|
353
|
-
"POST /app/hook/deliveries/{delivery_id}/attempts",
|
|
354
|
-
],
|
|
355
|
-
removeRepoFromInstallation: [
|
|
356
|
-
"DELETE /user/installations/{installation_id}/repositories/{repository_id}",
|
|
357
|
-
{},
|
|
358
|
-
{ renamed: ["apps", "removeRepoFromInstallationForAuthenticatedUser"] },
|
|
359
|
-
],
|
|
360
|
-
removeRepoFromInstallationForAuthenticatedUser: [
|
|
361
|
-
"DELETE /user/installations/{installation_id}/repositories/{repository_id}",
|
|
362
|
-
],
|
|
363
|
-
resetToken: ["PATCH /applications/{client_id}/token"],
|
|
364
|
-
revokeInstallationAccessToken: ["DELETE /installation/token"],
|
|
365
|
-
scopeToken: ["POST /applications/{client_id}/token/scoped"],
|
|
366
|
-
suspendInstallation: ["PUT /app/installations/{installation_id}/suspended"],
|
|
367
|
-
unsuspendInstallation: [
|
|
368
|
-
"DELETE /app/installations/{installation_id}/suspended",
|
|
369
|
-
],
|
|
370
|
-
updateWebhookConfigForApp: ["PATCH /app/hook/config"],
|
|
371
|
-
},
|
|
372
|
-
billing: {
|
|
373
|
-
getGithubActionsBillingOrg: ["GET /orgs/{org}/settings/billing/actions"],
|
|
374
|
-
getGithubActionsBillingUser: [
|
|
375
|
-
"GET /users/{username}/settings/billing/actions",
|
|
376
|
-
],
|
|
377
|
-
getGithubAdvancedSecurityBillingGhe: [
|
|
378
|
-
"GET /enterprises/{enterprise}/settings/billing/advanced-security",
|
|
379
|
-
],
|
|
380
|
-
getGithubAdvancedSecurityBillingOrg: [
|
|
381
|
-
"GET /orgs/{org}/settings/billing/advanced-security",
|
|
382
|
-
],
|
|
383
|
-
getGithubPackagesBillingOrg: ["GET /orgs/{org}/settings/billing/packages"],
|
|
384
|
-
getGithubPackagesBillingUser: [
|
|
385
|
-
"GET /users/{username}/settings/billing/packages",
|
|
386
|
-
],
|
|
387
|
-
getSharedStorageBillingOrg: [
|
|
388
|
-
"GET /orgs/{org}/settings/billing/shared-storage",
|
|
389
|
-
],
|
|
390
|
-
getSharedStorageBillingUser: [
|
|
391
|
-
"GET /users/{username}/settings/billing/shared-storage",
|
|
392
|
-
],
|
|
393
|
-
},
|
|
394
|
-
checks: {
|
|
395
|
-
create: ["POST /repos/{owner}/{repo}/check-runs"],
|
|
396
|
-
createSuite: ["POST /repos/{owner}/{repo}/check-suites"],
|
|
397
|
-
get: ["GET /repos/{owner}/{repo}/check-runs/{check_run_id}"],
|
|
398
|
-
getSuite: ["GET /repos/{owner}/{repo}/check-suites/{check_suite_id}"],
|
|
399
|
-
listAnnotations: [
|
|
400
|
-
"GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations",
|
|
401
|
-
],
|
|
402
|
-
listForRef: ["GET /repos/{owner}/{repo}/commits/{ref}/check-runs"],
|
|
403
|
-
listForSuite: [
|
|
404
|
-
"GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs",
|
|
405
|
-
],
|
|
406
|
-
listSuitesForRef: ["GET /repos/{owner}/{repo}/commits/{ref}/check-suites"],
|
|
407
|
-
rerequestRun: [
|
|
408
|
-
"POST /repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest",
|
|
409
|
-
],
|
|
410
|
-
rerequestSuite: [
|
|
411
|
-
"POST /repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest",
|
|
412
|
-
],
|
|
413
|
-
setSuitesPreferences: [
|
|
414
|
-
"PATCH /repos/{owner}/{repo}/check-suites/preferences",
|
|
415
|
-
],
|
|
416
|
-
update: ["PATCH /repos/{owner}/{repo}/check-runs/{check_run_id}"],
|
|
417
|
-
},
|
|
418
|
-
codeScanning: {
|
|
419
|
-
deleteAnalysis: [
|
|
420
|
-
"DELETE /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}{?confirm_delete}",
|
|
421
|
-
],
|
|
422
|
-
getAlert: [
|
|
423
|
-
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}",
|
|
424
|
-
{},
|
|
425
|
-
{ renamedParameters: { alert_id: "alert_number" } },
|
|
426
|
-
],
|
|
427
|
-
getAnalysis: [
|
|
428
|
-
"GET /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}",
|
|
429
|
-
],
|
|
430
|
-
getSarif: ["GET /repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}"],
|
|
431
|
-
listAlertInstances: [
|
|
432
|
-
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances",
|
|
433
|
-
],
|
|
434
|
-
listAlertsForOrg: ["GET /orgs/{org}/code-scanning/alerts"],
|
|
435
|
-
listAlertsForRepo: ["GET /repos/{owner}/{repo}/code-scanning/alerts"],
|
|
436
|
-
listAlertsInstances: [
|
|
437
|
-
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances",
|
|
438
|
-
{},
|
|
439
|
-
{ renamed: ["codeScanning", "listAlertInstances"] },
|
|
440
|
-
],
|
|
441
|
-
listRecentAnalyses: ["GET /repos/{owner}/{repo}/code-scanning/analyses"],
|
|
442
|
-
updateAlert: [
|
|
443
|
-
"PATCH /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}",
|
|
444
|
-
],
|
|
445
|
-
uploadSarif: ["POST /repos/{owner}/{repo}/code-scanning/sarifs"],
|
|
446
|
-
},
|
|
447
|
-
codesOfConduct: {
|
|
448
|
-
getAllCodesOfConduct: ["GET /codes_of_conduct"],
|
|
449
|
-
getConductCode: ["GET /codes_of_conduct/{key}"],
|
|
450
|
-
},
|
|
451
|
-
codespaces: {
|
|
452
|
-
addRepositoryForSecretForAuthenticatedUser: [
|
|
453
|
-
"PUT /user/codespaces/secrets/{secret_name}/repositories/{repository_id}",
|
|
454
|
-
],
|
|
455
|
-
codespaceMachinesForAuthenticatedUser: [
|
|
456
|
-
"GET /user/codespaces/{codespace_name}/machines",
|
|
457
|
-
],
|
|
458
|
-
createForAuthenticatedUser: ["POST /user/codespaces"],
|
|
459
|
-
createOrUpdateRepoSecret: [
|
|
460
|
-
"PUT /repos/{owner}/{repo}/codespaces/secrets/{secret_name}",
|
|
461
|
-
],
|
|
462
|
-
createOrUpdateSecretForAuthenticatedUser: [
|
|
463
|
-
"PUT /user/codespaces/secrets/{secret_name}",
|
|
464
|
-
],
|
|
465
|
-
createWithPrForAuthenticatedUser: [
|
|
466
|
-
"POST /repos/{owner}/{repo}/pulls/{pull_number}/codespaces",
|
|
467
|
-
],
|
|
468
|
-
createWithRepoForAuthenticatedUser: [
|
|
469
|
-
"POST /repos/{owner}/{repo}/codespaces",
|
|
470
|
-
],
|
|
471
|
-
deleteForAuthenticatedUser: ["DELETE /user/codespaces/{codespace_name}"],
|
|
472
|
-
deleteFromOrganization: [
|
|
473
|
-
"DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}",
|
|
474
|
-
],
|
|
475
|
-
deleteRepoSecret: [
|
|
476
|
-
"DELETE /repos/{owner}/{repo}/codespaces/secrets/{secret_name}",
|
|
477
|
-
],
|
|
478
|
-
deleteSecretForAuthenticatedUser: [
|
|
479
|
-
"DELETE /user/codespaces/secrets/{secret_name}",
|
|
480
|
-
],
|
|
481
|
-
exportForAuthenticatedUser: [
|
|
482
|
-
"POST /user/codespaces/{codespace_name}/exports",
|
|
483
|
-
],
|
|
484
|
-
getExportDetailsForAuthenticatedUser: [
|
|
485
|
-
"GET /user/codespaces/{codespace_name}/exports/{export_id}",
|
|
486
|
-
],
|
|
487
|
-
getForAuthenticatedUser: ["GET /user/codespaces/{codespace_name}"],
|
|
488
|
-
getPublicKeyForAuthenticatedUser: [
|
|
489
|
-
"GET /user/codespaces/secrets/public-key",
|
|
490
|
-
],
|
|
491
|
-
getRepoPublicKey: [
|
|
492
|
-
"GET /repos/{owner}/{repo}/codespaces/secrets/public-key",
|
|
493
|
-
],
|
|
494
|
-
getRepoSecret: [
|
|
495
|
-
"GET /repos/{owner}/{repo}/codespaces/secrets/{secret_name}",
|
|
496
|
-
],
|
|
497
|
-
getSecretForAuthenticatedUser: [
|
|
498
|
-
"GET /user/codespaces/secrets/{secret_name}",
|
|
499
|
-
],
|
|
500
|
-
listDevcontainersInRepositoryForAuthenticatedUser: [
|
|
501
|
-
"GET /repos/{owner}/{repo}/codespaces/devcontainers",
|
|
502
|
-
],
|
|
503
|
-
listForAuthenticatedUser: ["GET /user/codespaces"],
|
|
504
|
-
listInOrganization: [
|
|
505
|
-
"GET /orgs/{org}/codespaces",
|
|
506
|
-
{},
|
|
507
|
-
{ renamedParameters: { org_id: "org" } },
|
|
508
|
-
],
|
|
509
|
-
listInRepositoryForAuthenticatedUser: [
|
|
510
|
-
"GET /repos/{owner}/{repo}/codespaces",
|
|
511
|
-
],
|
|
512
|
-
listRepoSecrets: ["GET /repos/{owner}/{repo}/codespaces/secrets"],
|
|
513
|
-
listRepositoriesForSecretForAuthenticatedUser: [
|
|
514
|
-
"GET /user/codespaces/secrets/{secret_name}/repositories",
|
|
515
|
-
],
|
|
516
|
-
listSecretsForAuthenticatedUser: ["GET /user/codespaces/secrets"],
|
|
517
|
-
removeRepositoryForSecretForAuthenticatedUser: [
|
|
518
|
-
"DELETE /user/codespaces/secrets/{secret_name}/repositories/{repository_id}",
|
|
519
|
-
],
|
|
520
|
-
repoMachinesForAuthenticatedUser: [
|
|
521
|
-
"GET /repos/{owner}/{repo}/codespaces/machines",
|
|
522
|
-
],
|
|
523
|
-
setRepositoriesForSecretForAuthenticatedUser: [
|
|
524
|
-
"PUT /user/codespaces/secrets/{secret_name}/repositories",
|
|
525
|
-
],
|
|
526
|
-
startForAuthenticatedUser: ["POST /user/codespaces/{codespace_name}/start"],
|
|
527
|
-
stopForAuthenticatedUser: ["POST /user/codespaces/{codespace_name}/stop"],
|
|
528
|
-
stopInOrganization: [
|
|
529
|
-
"POST /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop",
|
|
530
|
-
],
|
|
531
|
-
updateForAuthenticatedUser: ["PATCH /user/codespaces/{codespace_name}"],
|
|
532
|
-
},
|
|
533
|
-
dependabot: {
|
|
534
|
-
addSelectedRepoToOrgSecret: [
|
|
535
|
-
"PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}",
|
|
536
|
-
],
|
|
537
|
-
createOrUpdateOrgSecret: [
|
|
538
|
-
"PUT /orgs/{org}/dependabot/secrets/{secret_name}",
|
|
539
|
-
],
|
|
540
|
-
createOrUpdateRepoSecret: [
|
|
541
|
-
"PUT /repos/{owner}/{repo}/dependabot/secrets/{secret_name}",
|
|
542
|
-
],
|
|
543
|
-
deleteOrgSecret: ["DELETE /orgs/{org}/dependabot/secrets/{secret_name}"],
|
|
544
|
-
deleteRepoSecret: [
|
|
545
|
-
"DELETE /repos/{owner}/{repo}/dependabot/secrets/{secret_name}",
|
|
546
|
-
],
|
|
547
|
-
getOrgPublicKey: ["GET /orgs/{org}/dependabot/secrets/public-key"],
|
|
548
|
-
getOrgSecret: ["GET /orgs/{org}/dependabot/secrets/{secret_name}"],
|
|
549
|
-
getRepoPublicKey: [
|
|
550
|
-
"GET /repos/{owner}/{repo}/dependabot/secrets/public-key",
|
|
551
|
-
],
|
|
552
|
-
getRepoSecret: [
|
|
553
|
-
"GET /repos/{owner}/{repo}/dependabot/secrets/{secret_name}",
|
|
554
|
-
],
|
|
555
|
-
listOrgSecrets: ["GET /orgs/{org}/dependabot/secrets"],
|
|
556
|
-
listRepoSecrets: ["GET /repos/{owner}/{repo}/dependabot/secrets"],
|
|
557
|
-
listSelectedReposForOrgSecret: [
|
|
558
|
-
"GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories",
|
|
559
|
-
],
|
|
560
|
-
removeSelectedRepoFromOrgSecret: [
|
|
561
|
-
"DELETE /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}",
|
|
562
|
-
],
|
|
563
|
-
setSelectedReposForOrgSecret: [
|
|
564
|
-
"PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories",
|
|
565
|
-
],
|
|
566
|
-
},
|
|
567
|
-
dependencyGraph: {
|
|
568
|
-
createRepositorySnapshot: [
|
|
569
|
-
"POST /repos/{owner}/{repo}/dependency-graph/snapshots",
|
|
570
|
-
],
|
|
571
|
-
diffRange: [
|
|
572
|
-
"GET /repos/{owner}/{repo}/dependency-graph/compare/{basehead}",
|
|
573
|
-
],
|
|
574
|
-
},
|
|
575
|
-
emojis: { get: ["GET /emojis"] },
|
|
576
|
-
enterpriseAdmin: {
|
|
577
|
-
addCustomLabelsToSelfHostedRunnerForEnterprise: [
|
|
578
|
-
"POST /enterprises/{enterprise}/actions/runners/{runner_id}/labels",
|
|
579
|
-
],
|
|
580
|
-
disableSelectedOrganizationGithubActionsEnterprise: [
|
|
581
|
-
"DELETE /enterprises/{enterprise}/actions/permissions/organizations/{org_id}",
|
|
582
|
-
],
|
|
583
|
-
enableSelectedOrganizationGithubActionsEnterprise: [
|
|
584
|
-
"PUT /enterprises/{enterprise}/actions/permissions/organizations/{org_id}",
|
|
585
|
-
],
|
|
586
|
-
getAllowedActionsEnterprise: [
|
|
587
|
-
"GET /enterprises/{enterprise}/actions/permissions/selected-actions",
|
|
588
|
-
],
|
|
589
|
-
getGithubActionsPermissionsEnterprise: [
|
|
590
|
-
"GET /enterprises/{enterprise}/actions/permissions",
|
|
591
|
-
],
|
|
592
|
-
getServerStatistics: [
|
|
593
|
-
"GET /enterprise-installation/{enterprise_or_org}/server-statistics",
|
|
594
|
-
],
|
|
595
|
-
listLabelsForSelfHostedRunnerForEnterprise: [
|
|
596
|
-
"GET /enterprises/{enterprise}/actions/runners/{runner_id}/labels",
|
|
597
|
-
],
|
|
598
|
-
listSelectedOrganizationsEnabledGithubActionsEnterprise: [
|
|
599
|
-
"GET /enterprises/{enterprise}/actions/permissions/organizations",
|
|
600
|
-
],
|
|
601
|
-
removeAllCustomLabelsFromSelfHostedRunnerForEnterprise: [
|
|
602
|
-
"DELETE /enterprises/{enterprise}/actions/runners/{runner_id}/labels",
|
|
603
|
-
],
|
|
604
|
-
removeCustomLabelFromSelfHostedRunnerForEnterprise: [
|
|
605
|
-
"DELETE /enterprises/{enterprise}/actions/runners/{runner_id}/labels/{name}",
|
|
606
|
-
],
|
|
607
|
-
setAllowedActionsEnterprise: [
|
|
608
|
-
"PUT /enterprises/{enterprise}/actions/permissions/selected-actions",
|
|
609
|
-
],
|
|
610
|
-
setCustomLabelsForSelfHostedRunnerForEnterprise: [
|
|
611
|
-
"PUT /enterprises/{enterprise}/actions/runners/{runner_id}/labels",
|
|
612
|
-
],
|
|
613
|
-
setGithubActionsPermissionsEnterprise: [
|
|
614
|
-
"PUT /enterprises/{enterprise}/actions/permissions",
|
|
615
|
-
],
|
|
616
|
-
setSelectedOrganizationsEnabledGithubActionsEnterprise: [
|
|
617
|
-
"PUT /enterprises/{enterprise}/actions/permissions/organizations",
|
|
618
|
-
],
|
|
619
|
-
},
|
|
620
|
-
gists: {
|
|
621
|
-
checkIsStarred: ["GET /gists/{gist_id}/star"],
|
|
622
|
-
create: ["POST /gists"],
|
|
623
|
-
createComment: ["POST /gists/{gist_id}/comments"],
|
|
624
|
-
delete: ["DELETE /gists/{gist_id}"],
|
|
625
|
-
deleteComment: ["DELETE /gists/{gist_id}/comments/{comment_id}"],
|
|
626
|
-
fork: ["POST /gists/{gist_id}/forks"],
|
|
627
|
-
get: ["GET /gists/{gist_id}"],
|
|
628
|
-
getComment: ["GET /gists/{gist_id}/comments/{comment_id}"],
|
|
629
|
-
getRevision: ["GET /gists/{gist_id}/{sha}"],
|
|
630
|
-
list: ["GET /gists"],
|
|
631
|
-
listComments: ["GET /gists/{gist_id}/comments"],
|
|
632
|
-
listCommits: ["GET /gists/{gist_id}/commits"],
|
|
633
|
-
listForUser: ["GET /users/{username}/gists"],
|
|
634
|
-
listForks: ["GET /gists/{gist_id}/forks"],
|
|
635
|
-
listPublic: ["GET /gists/public"],
|
|
636
|
-
listStarred: ["GET /gists/starred"],
|
|
637
|
-
star: ["PUT /gists/{gist_id}/star"],
|
|
638
|
-
unstar: ["DELETE /gists/{gist_id}/star"],
|
|
639
|
-
update: ["PATCH /gists/{gist_id}"],
|
|
640
|
-
updateComment: ["PATCH /gists/{gist_id}/comments/{comment_id}"],
|
|
641
|
-
},
|
|
642
|
-
git: {
|
|
643
|
-
createBlob: ["POST /repos/{owner}/{repo}/git/blobs"],
|
|
644
|
-
createCommit: ["POST /repos/{owner}/{repo}/git/commits"],
|
|
645
|
-
createRef: ["POST /repos/{owner}/{repo}/git/refs"],
|
|
646
|
-
createTag: ["POST /repos/{owner}/{repo}/git/tags"],
|
|
647
|
-
createTree: ["POST /repos/{owner}/{repo}/git/trees"],
|
|
648
|
-
deleteRef: ["DELETE /repos/{owner}/{repo}/git/refs/{ref}"],
|
|
649
|
-
getBlob: ["GET /repos/{owner}/{repo}/git/blobs/{file_sha}"],
|
|
650
|
-
getCommit: ["GET /repos/{owner}/{repo}/git/commits/{commit_sha}"],
|
|
651
|
-
getRef: ["GET /repos/{owner}/{repo}/git/ref/{ref}"],
|
|
652
|
-
getTag: ["GET /repos/{owner}/{repo}/git/tags/{tag_sha}"],
|
|
653
|
-
getTree: ["GET /repos/{owner}/{repo}/git/trees/{tree_sha}"],
|
|
654
|
-
listMatchingRefs: ["GET /repos/{owner}/{repo}/git/matching-refs/{ref}"],
|
|
655
|
-
updateRef: ["PATCH /repos/{owner}/{repo}/git/refs/{ref}"],
|
|
656
|
-
},
|
|
657
|
-
gitignore: {
|
|
658
|
-
getAllTemplates: ["GET /gitignore/templates"],
|
|
659
|
-
getTemplate: ["GET /gitignore/templates/{name}"],
|
|
660
|
-
},
|
|
661
|
-
interactions: {
|
|
662
|
-
getRestrictionsForAuthenticatedUser: ["GET /user/interaction-limits"],
|
|
663
|
-
getRestrictionsForOrg: ["GET /orgs/{org}/interaction-limits"],
|
|
664
|
-
getRestrictionsForRepo: ["GET /repos/{owner}/{repo}/interaction-limits"],
|
|
665
|
-
getRestrictionsForYourPublicRepos: [
|
|
666
|
-
"GET /user/interaction-limits",
|
|
667
|
-
{},
|
|
668
|
-
{ renamed: ["interactions", "getRestrictionsForAuthenticatedUser"] },
|
|
669
|
-
],
|
|
670
|
-
removeRestrictionsForAuthenticatedUser: ["DELETE /user/interaction-limits"],
|
|
671
|
-
removeRestrictionsForOrg: ["DELETE /orgs/{org}/interaction-limits"],
|
|
672
|
-
removeRestrictionsForRepo: [
|
|
673
|
-
"DELETE /repos/{owner}/{repo}/interaction-limits",
|
|
674
|
-
],
|
|
675
|
-
removeRestrictionsForYourPublicRepos: [
|
|
676
|
-
"DELETE /user/interaction-limits",
|
|
677
|
-
{},
|
|
678
|
-
{ renamed: ["interactions", "removeRestrictionsForAuthenticatedUser"] },
|
|
679
|
-
],
|
|
680
|
-
setRestrictionsForAuthenticatedUser: ["PUT /user/interaction-limits"],
|
|
681
|
-
setRestrictionsForOrg: ["PUT /orgs/{org}/interaction-limits"],
|
|
682
|
-
setRestrictionsForRepo: ["PUT /repos/{owner}/{repo}/interaction-limits"],
|
|
683
|
-
setRestrictionsForYourPublicRepos: [
|
|
684
|
-
"PUT /user/interaction-limits",
|
|
685
|
-
{},
|
|
686
|
-
{ renamed: ["interactions", "setRestrictionsForAuthenticatedUser"] },
|
|
687
|
-
],
|
|
688
|
-
},
|
|
689
|
-
issues: {
|
|
690
|
-
addAssignees: [
|
|
691
|
-
"POST /repos/{owner}/{repo}/issues/{issue_number}/assignees",
|
|
692
|
-
],
|
|
693
|
-
addLabels: ["POST /repos/{owner}/{repo}/issues/{issue_number}/labels"],
|
|
694
|
-
checkUserCanBeAssigned: ["GET /repos/{owner}/{repo}/assignees/{assignee}"],
|
|
695
|
-
create: ["POST /repos/{owner}/{repo}/issues"],
|
|
696
|
-
createComment: [
|
|
697
|
-
"POST /repos/{owner}/{repo}/issues/{issue_number}/comments",
|
|
698
|
-
],
|
|
699
|
-
createLabel: ["POST /repos/{owner}/{repo}/labels"],
|
|
700
|
-
createMilestone: ["POST /repos/{owner}/{repo}/milestones"],
|
|
701
|
-
deleteComment: [
|
|
702
|
-
"DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}",
|
|
703
|
-
],
|
|
704
|
-
deleteLabel: ["DELETE /repos/{owner}/{repo}/labels/{name}"],
|
|
705
|
-
deleteMilestone: [
|
|
706
|
-
"DELETE /repos/{owner}/{repo}/milestones/{milestone_number}",
|
|
707
|
-
],
|
|
708
|
-
get: ["GET /repos/{owner}/{repo}/issues/{issue_number}"],
|
|
709
|
-
getComment: ["GET /repos/{owner}/{repo}/issues/comments/{comment_id}"],
|
|
710
|
-
getEvent: ["GET /repos/{owner}/{repo}/issues/events/{event_id}"],
|
|
711
|
-
getLabel: ["GET /repos/{owner}/{repo}/labels/{name}"],
|
|
712
|
-
getMilestone: ["GET /repos/{owner}/{repo}/milestones/{milestone_number}"],
|
|
713
|
-
list: ["GET /issues"],
|
|
714
|
-
listAssignees: ["GET /repos/{owner}/{repo}/assignees"],
|
|
715
|
-
listComments: ["GET /repos/{owner}/{repo}/issues/{issue_number}/comments"],
|
|
716
|
-
listCommentsForRepo: ["GET /repos/{owner}/{repo}/issues/comments"],
|
|
717
|
-
listEvents: ["GET /repos/{owner}/{repo}/issues/{issue_number}/events"],
|
|
718
|
-
listEventsForRepo: ["GET /repos/{owner}/{repo}/issues/events"],
|
|
719
|
-
listEventsForTimeline: [
|
|
720
|
-
"GET /repos/{owner}/{repo}/issues/{issue_number}/timeline",
|
|
721
|
-
],
|
|
722
|
-
listForAuthenticatedUser: ["GET /user/issues"],
|
|
723
|
-
listForOrg: ["GET /orgs/{org}/issues"],
|
|
724
|
-
listForRepo: ["GET /repos/{owner}/{repo}/issues"],
|
|
725
|
-
listLabelsForMilestone: [
|
|
726
|
-
"GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels",
|
|
727
|
-
],
|
|
728
|
-
listLabelsForRepo: ["GET /repos/{owner}/{repo}/labels"],
|
|
729
|
-
listLabelsOnIssue: [
|
|
730
|
-
"GET /repos/{owner}/{repo}/issues/{issue_number}/labels",
|
|
731
|
-
],
|
|
732
|
-
listMilestones: ["GET /repos/{owner}/{repo}/milestones"],
|
|
733
|
-
lock: ["PUT /repos/{owner}/{repo}/issues/{issue_number}/lock"],
|
|
734
|
-
removeAllLabels: [
|
|
735
|
-
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels",
|
|
736
|
-
],
|
|
737
|
-
removeAssignees: [
|
|
738
|
-
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/assignees",
|
|
739
|
-
],
|
|
740
|
-
removeLabel: [
|
|
741
|
-
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels/{name}",
|
|
742
|
-
],
|
|
743
|
-
setLabels: ["PUT /repos/{owner}/{repo}/issues/{issue_number}/labels"],
|
|
744
|
-
unlock: ["DELETE /repos/{owner}/{repo}/issues/{issue_number}/lock"],
|
|
745
|
-
update: ["PATCH /repos/{owner}/{repo}/issues/{issue_number}"],
|
|
746
|
-
updateComment: ["PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}"],
|
|
747
|
-
updateLabel: ["PATCH /repos/{owner}/{repo}/labels/{name}"],
|
|
748
|
-
updateMilestone: [
|
|
749
|
-
"PATCH /repos/{owner}/{repo}/milestones/{milestone_number}",
|
|
750
|
-
],
|
|
751
|
-
},
|
|
752
|
-
licenses: {
|
|
753
|
-
get: ["GET /licenses/{license}"],
|
|
754
|
-
getAllCommonlyUsed: ["GET /licenses"],
|
|
755
|
-
getForRepo: ["GET /repos/{owner}/{repo}/license"],
|
|
756
|
-
},
|
|
757
|
-
markdown: {
|
|
758
|
-
render: ["POST /markdown"],
|
|
759
|
-
renderRaw: [
|
|
760
|
-
"POST /markdown/raw",
|
|
761
|
-
{ headers: { "content-type": "text/plain; charset=utf-8" } },
|
|
762
|
-
],
|
|
763
|
-
},
|
|
764
|
-
meta: {
|
|
765
|
-
get: ["GET /meta"],
|
|
766
|
-
getOctocat: ["GET /octocat"],
|
|
767
|
-
getZen: ["GET /zen"],
|
|
768
|
-
root: ["GET /"],
|
|
769
|
-
},
|
|
770
|
-
migrations: {
|
|
771
|
-
cancelImport: ["DELETE /repos/{owner}/{repo}/import"],
|
|
772
|
-
deleteArchiveForAuthenticatedUser: [
|
|
773
|
-
"DELETE /user/migrations/{migration_id}/archive",
|
|
774
|
-
],
|
|
775
|
-
deleteArchiveForOrg: [
|
|
776
|
-
"DELETE /orgs/{org}/migrations/{migration_id}/archive",
|
|
777
|
-
],
|
|
778
|
-
downloadArchiveForOrg: [
|
|
779
|
-
"GET /orgs/{org}/migrations/{migration_id}/archive",
|
|
780
|
-
],
|
|
781
|
-
getArchiveForAuthenticatedUser: [
|
|
782
|
-
"GET /user/migrations/{migration_id}/archive",
|
|
783
|
-
],
|
|
784
|
-
getCommitAuthors: ["GET /repos/{owner}/{repo}/import/authors"],
|
|
785
|
-
getImportStatus: ["GET /repos/{owner}/{repo}/import"],
|
|
786
|
-
getLargeFiles: ["GET /repos/{owner}/{repo}/import/large_files"],
|
|
787
|
-
getStatusForAuthenticatedUser: ["GET /user/migrations/{migration_id}"],
|
|
788
|
-
getStatusForOrg: ["GET /orgs/{org}/migrations/{migration_id}"],
|
|
789
|
-
listForAuthenticatedUser: ["GET /user/migrations"],
|
|
790
|
-
listForOrg: ["GET /orgs/{org}/migrations"],
|
|
791
|
-
listReposForAuthenticatedUser: [
|
|
792
|
-
"GET /user/migrations/{migration_id}/repositories",
|
|
793
|
-
],
|
|
794
|
-
listReposForOrg: ["GET /orgs/{org}/migrations/{migration_id}/repositories"],
|
|
795
|
-
listReposForUser: [
|
|
796
|
-
"GET /user/migrations/{migration_id}/repositories",
|
|
797
|
-
{},
|
|
798
|
-
{ renamed: ["migrations", "listReposForAuthenticatedUser"] },
|
|
799
|
-
],
|
|
800
|
-
mapCommitAuthor: ["PATCH /repos/{owner}/{repo}/import/authors/{author_id}"],
|
|
801
|
-
setLfsPreference: ["PATCH /repos/{owner}/{repo}/import/lfs"],
|
|
802
|
-
startForAuthenticatedUser: ["POST /user/migrations"],
|
|
803
|
-
startForOrg: ["POST /orgs/{org}/migrations"],
|
|
804
|
-
startImport: ["PUT /repos/{owner}/{repo}/import"],
|
|
805
|
-
unlockRepoForAuthenticatedUser: [
|
|
806
|
-
"DELETE /user/migrations/{migration_id}/repos/{repo_name}/lock",
|
|
807
|
-
],
|
|
808
|
-
unlockRepoForOrg: [
|
|
809
|
-
"DELETE /orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock",
|
|
810
|
-
],
|
|
811
|
-
updateImport: ["PATCH /repos/{owner}/{repo}/import"],
|
|
812
|
-
},
|
|
813
|
-
orgs: {
|
|
814
|
-
blockUser: ["PUT /orgs/{org}/blocks/{username}"],
|
|
815
|
-
cancelInvitation: ["DELETE /orgs/{org}/invitations/{invitation_id}"],
|
|
816
|
-
checkBlockedUser: ["GET /orgs/{org}/blocks/{username}"],
|
|
817
|
-
checkMembershipForUser: ["GET /orgs/{org}/members/{username}"],
|
|
818
|
-
checkPublicMembershipForUser: ["GET /orgs/{org}/public_members/{username}"],
|
|
819
|
-
convertMemberToOutsideCollaborator: [
|
|
820
|
-
"PUT /orgs/{org}/outside_collaborators/{username}",
|
|
821
|
-
],
|
|
822
|
-
createInvitation: ["POST /orgs/{org}/invitations"],
|
|
823
|
-
createWebhook: ["POST /orgs/{org}/hooks"],
|
|
824
|
-
deleteWebhook: ["DELETE /orgs/{org}/hooks/{hook_id}"],
|
|
825
|
-
get: ["GET /orgs/{org}"],
|
|
826
|
-
getMembershipForAuthenticatedUser: ["GET /user/memberships/orgs/{org}"],
|
|
827
|
-
getMembershipForUser: ["GET /orgs/{org}/memberships/{username}"],
|
|
828
|
-
getWebhook: ["GET /orgs/{org}/hooks/{hook_id}"],
|
|
829
|
-
getWebhookConfigForOrg: ["GET /orgs/{org}/hooks/{hook_id}/config"],
|
|
830
|
-
getWebhookDelivery: [
|
|
831
|
-
"GET /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}",
|
|
832
|
-
],
|
|
833
|
-
list: ["GET /organizations"],
|
|
834
|
-
listAppInstallations: ["GET /orgs/{org}/installations"],
|
|
835
|
-
listBlockedUsers: ["GET /orgs/{org}/blocks"],
|
|
836
|
-
listCustomRoles: ["GET /organizations/{organization_id}/custom_roles"],
|
|
837
|
-
listFailedInvitations: ["GET /orgs/{org}/failed_invitations"],
|
|
838
|
-
listForAuthenticatedUser: ["GET /user/orgs"],
|
|
839
|
-
listForUser: ["GET /users/{username}/orgs"],
|
|
840
|
-
listInvitationTeams: ["GET /orgs/{org}/invitations/{invitation_id}/teams"],
|
|
841
|
-
listMembers: ["GET /orgs/{org}/members"],
|
|
842
|
-
listMembershipsForAuthenticatedUser: ["GET /user/memberships/orgs"],
|
|
843
|
-
listOutsideCollaborators: ["GET /orgs/{org}/outside_collaborators"],
|
|
844
|
-
listPendingInvitations: ["GET /orgs/{org}/invitations"],
|
|
845
|
-
listPublicMembers: ["GET /orgs/{org}/public_members"],
|
|
846
|
-
listWebhookDeliveries: ["GET /orgs/{org}/hooks/{hook_id}/deliveries"],
|
|
847
|
-
listWebhooks: ["GET /orgs/{org}/hooks"],
|
|
848
|
-
pingWebhook: ["POST /orgs/{org}/hooks/{hook_id}/pings"],
|
|
849
|
-
redeliverWebhookDelivery: [
|
|
850
|
-
"POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts",
|
|
851
|
-
],
|
|
852
|
-
removeMember: ["DELETE /orgs/{org}/members/{username}"],
|
|
853
|
-
removeMembershipForUser: ["DELETE /orgs/{org}/memberships/{username}"],
|
|
854
|
-
removeOutsideCollaborator: [
|
|
855
|
-
"DELETE /orgs/{org}/outside_collaborators/{username}",
|
|
856
|
-
],
|
|
857
|
-
removePublicMembershipForAuthenticatedUser: [
|
|
858
|
-
"DELETE /orgs/{org}/public_members/{username}",
|
|
859
|
-
],
|
|
860
|
-
setMembershipForUser: ["PUT /orgs/{org}/memberships/{username}"],
|
|
861
|
-
setPublicMembershipForAuthenticatedUser: [
|
|
862
|
-
"PUT /orgs/{org}/public_members/{username}",
|
|
863
|
-
],
|
|
864
|
-
unblockUser: ["DELETE /orgs/{org}/blocks/{username}"],
|
|
865
|
-
update: ["PATCH /orgs/{org}"],
|
|
866
|
-
updateMembershipForAuthenticatedUser: [
|
|
867
|
-
"PATCH /user/memberships/orgs/{org}",
|
|
868
|
-
],
|
|
869
|
-
updateWebhook: ["PATCH /orgs/{org}/hooks/{hook_id}"],
|
|
870
|
-
updateWebhookConfigForOrg: ["PATCH /orgs/{org}/hooks/{hook_id}/config"],
|
|
871
|
-
},
|
|
872
|
-
packages: {
|
|
873
|
-
deletePackageForAuthenticatedUser: [
|
|
874
|
-
"DELETE /user/packages/{package_type}/{package_name}",
|
|
875
|
-
],
|
|
876
|
-
deletePackageForOrg: [
|
|
877
|
-
"DELETE /orgs/{org}/packages/{package_type}/{package_name}",
|
|
878
|
-
],
|
|
879
|
-
deletePackageForUser: [
|
|
880
|
-
"DELETE /users/{username}/packages/{package_type}/{package_name}",
|
|
881
|
-
],
|
|
882
|
-
deletePackageVersionForAuthenticatedUser: [
|
|
883
|
-
"DELETE /user/packages/{package_type}/{package_name}/versions/{package_version_id}",
|
|
884
|
-
],
|
|
885
|
-
deletePackageVersionForOrg: [
|
|
886
|
-
"DELETE /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}",
|
|
887
|
-
],
|
|
888
|
-
deletePackageVersionForUser: [
|
|
889
|
-
"DELETE /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}",
|
|
890
|
-
],
|
|
891
|
-
getAllPackageVersionsForAPackageOwnedByAnOrg: [
|
|
892
|
-
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions",
|
|
893
|
-
{},
|
|
894
|
-
{ renamed: ["packages", "getAllPackageVersionsForPackageOwnedByOrg"] },
|
|
895
|
-
],
|
|
896
|
-
getAllPackageVersionsForAPackageOwnedByTheAuthenticatedUser: [
|
|
897
|
-
"GET /user/packages/{package_type}/{package_name}/versions",
|
|
898
|
-
{},
|
|
899
|
-
{
|
|
900
|
-
renamed: [
|
|
901
|
-
"packages",
|
|
902
|
-
"getAllPackageVersionsForPackageOwnedByAuthenticatedUser",
|
|
903
|
-
],
|
|
904
|
-
},
|
|
905
|
-
],
|
|
906
|
-
getAllPackageVersionsForPackageOwnedByAuthenticatedUser: [
|
|
907
|
-
"GET /user/packages/{package_type}/{package_name}/versions",
|
|
908
|
-
],
|
|
909
|
-
getAllPackageVersionsForPackageOwnedByOrg: [
|
|
910
|
-
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions",
|
|
911
|
-
],
|
|
912
|
-
getAllPackageVersionsForPackageOwnedByUser: [
|
|
913
|
-
"GET /users/{username}/packages/{package_type}/{package_name}/versions",
|
|
914
|
-
],
|
|
915
|
-
getPackageForAuthenticatedUser: [
|
|
916
|
-
"GET /user/packages/{package_type}/{package_name}",
|
|
917
|
-
],
|
|
918
|
-
getPackageForOrganization: [
|
|
919
|
-
"GET /orgs/{org}/packages/{package_type}/{package_name}",
|
|
920
|
-
],
|
|
921
|
-
getPackageForUser: [
|
|
922
|
-
"GET /users/{username}/packages/{package_type}/{package_name}",
|
|
923
|
-
],
|
|
924
|
-
getPackageVersionForAuthenticatedUser: [
|
|
925
|
-
"GET /user/packages/{package_type}/{package_name}/versions/{package_version_id}",
|
|
926
|
-
],
|
|
927
|
-
getPackageVersionForOrganization: [
|
|
928
|
-
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}",
|
|
929
|
-
],
|
|
930
|
-
getPackageVersionForUser: [
|
|
931
|
-
"GET /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}",
|
|
932
|
-
],
|
|
933
|
-
listPackagesForAuthenticatedUser: ["GET /user/packages"],
|
|
934
|
-
listPackagesForOrganization: ["GET /orgs/{org}/packages"],
|
|
935
|
-
listPackagesForUser: ["GET /users/{username}/packages"],
|
|
936
|
-
restorePackageForAuthenticatedUser: [
|
|
937
|
-
"POST /user/packages/{package_type}/{package_name}/restore{?token}",
|
|
938
|
-
],
|
|
939
|
-
restorePackageForOrg: [
|
|
940
|
-
"POST /orgs/{org}/packages/{package_type}/{package_name}/restore{?token}",
|
|
941
|
-
],
|
|
942
|
-
restorePackageForUser: [
|
|
943
|
-
"POST /users/{username}/packages/{package_type}/{package_name}/restore{?token}",
|
|
944
|
-
],
|
|
945
|
-
restorePackageVersionForAuthenticatedUser: [
|
|
946
|
-
"POST /user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore",
|
|
947
|
-
],
|
|
948
|
-
restorePackageVersionForOrg: [
|
|
949
|
-
"POST /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore",
|
|
950
|
-
],
|
|
951
|
-
restorePackageVersionForUser: [
|
|
952
|
-
"POST /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore",
|
|
953
|
-
],
|
|
954
|
-
},
|
|
955
|
-
projects: {
|
|
956
|
-
addCollaborator: ["PUT /projects/{project_id}/collaborators/{username}"],
|
|
957
|
-
createCard: ["POST /projects/columns/{column_id}/cards"],
|
|
958
|
-
createColumn: ["POST /projects/{project_id}/columns"],
|
|
959
|
-
createForAuthenticatedUser: ["POST /user/projects"],
|
|
960
|
-
createForOrg: ["POST /orgs/{org}/projects"],
|
|
961
|
-
createForRepo: ["POST /repos/{owner}/{repo}/projects"],
|
|
962
|
-
delete: ["DELETE /projects/{project_id}"],
|
|
963
|
-
deleteCard: ["DELETE /projects/columns/cards/{card_id}"],
|
|
964
|
-
deleteColumn: ["DELETE /projects/columns/{column_id}"],
|
|
965
|
-
get: ["GET /projects/{project_id}"],
|
|
966
|
-
getCard: ["GET /projects/columns/cards/{card_id}"],
|
|
967
|
-
getColumn: ["GET /projects/columns/{column_id}"],
|
|
968
|
-
getPermissionForUser: [
|
|
969
|
-
"GET /projects/{project_id}/collaborators/{username}/permission",
|
|
970
|
-
],
|
|
971
|
-
listCards: ["GET /projects/columns/{column_id}/cards"],
|
|
972
|
-
listCollaborators: ["GET /projects/{project_id}/collaborators"],
|
|
973
|
-
listColumns: ["GET /projects/{project_id}/columns"],
|
|
974
|
-
listForOrg: ["GET /orgs/{org}/projects"],
|
|
975
|
-
listForRepo: ["GET /repos/{owner}/{repo}/projects"],
|
|
976
|
-
listForUser: ["GET /users/{username}/projects"],
|
|
977
|
-
moveCard: ["POST /projects/columns/cards/{card_id}/moves"],
|
|
978
|
-
moveColumn: ["POST /projects/columns/{column_id}/moves"],
|
|
979
|
-
removeCollaborator: [
|
|
980
|
-
"DELETE /projects/{project_id}/collaborators/{username}",
|
|
981
|
-
],
|
|
982
|
-
update: ["PATCH /projects/{project_id}"],
|
|
983
|
-
updateCard: ["PATCH /projects/columns/cards/{card_id}"],
|
|
984
|
-
updateColumn: ["PATCH /projects/columns/{column_id}"],
|
|
985
|
-
},
|
|
986
|
-
pulls: {
|
|
987
|
-
checkIfMerged: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/merge"],
|
|
988
|
-
create: ["POST /repos/{owner}/{repo}/pulls"],
|
|
989
|
-
createReplyForReviewComment: [
|
|
990
|
-
"POST /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies",
|
|
991
|
-
],
|
|
992
|
-
createReview: ["POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews"],
|
|
993
|
-
createReviewComment: [
|
|
994
|
-
"POST /repos/{owner}/{repo}/pulls/{pull_number}/comments",
|
|
995
|
-
],
|
|
996
|
-
deletePendingReview: [
|
|
997
|
-
"DELETE /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}",
|
|
998
|
-
],
|
|
999
|
-
deleteReviewComment: [
|
|
1000
|
-
"DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}",
|
|
1001
|
-
],
|
|
1002
|
-
dismissReview: [
|
|
1003
|
-
"PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals",
|
|
1004
|
-
],
|
|
1005
|
-
get: ["GET /repos/{owner}/{repo}/pulls/{pull_number}"],
|
|
1006
|
-
getReview: [
|
|
1007
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}",
|
|
1008
|
-
],
|
|
1009
|
-
getReviewComment: ["GET /repos/{owner}/{repo}/pulls/comments/{comment_id}"],
|
|
1010
|
-
list: ["GET /repos/{owner}/{repo}/pulls"],
|
|
1011
|
-
listCommentsForReview: [
|
|
1012
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments",
|
|
1013
|
-
],
|
|
1014
|
-
listCommits: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/commits"],
|
|
1015
|
-
listFiles: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/files"],
|
|
1016
|
-
listRequestedReviewers: [
|
|
1017
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers",
|
|
1018
|
-
],
|
|
1019
|
-
listReviewComments: [
|
|
1020
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/comments",
|
|
1021
|
-
],
|
|
1022
|
-
listReviewCommentsForRepo: ["GET /repos/{owner}/{repo}/pulls/comments"],
|
|
1023
|
-
listReviews: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews"],
|
|
1024
|
-
merge: ["PUT /repos/{owner}/{repo}/pulls/{pull_number}/merge"],
|
|
1025
|
-
removeRequestedReviewers: [
|
|
1026
|
-
"DELETE /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers",
|
|
1027
|
-
],
|
|
1028
|
-
requestReviewers: [
|
|
1029
|
-
"POST /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers",
|
|
1030
|
-
],
|
|
1031
|
-
submitReview: [
|
|
1032
|
-
"POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events",
|
|
1033
|
-
],
|
|
1034
|
-
update: ["PATCH /repos/{owner}/{repo}/pulls/{pull_number}"],
|
|
1035
|
-
updateBranch: [
|
|
1036
|
-
"PUT /repos/{owner}/{repo}/pulls/{pull_number}/update-branch",
|
|
1037
|
-
],
|
|
1038
|
-
updateReview: [
|
|
1039
|
-
"PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}",
|
|
1040
|
-
],
|
|
1041
|
-
updateReviewComment: [
|
|
1042
|
-
"PATCH /repos/{owner}/{repo}/pulls/comments/{comment_id}",
|
|
1043
|
-
],
|
|
1044
|
-
},
|
|
1045
|
-
rateLimit: { get: ["GET /rate_limit"] },
|
|
1046
|
-
reactions: {
|
|
1047
|
-
createForCommitComment: [
|
|
1048
|
-
"POST /repos/{owner}/{repo}/comments/{comment_id}/reactions",
|
|
1049
|
-
],
|
|
1050
|
-
createForIssue: [
|
|
1051
|
-
"POST /repos/{owner}/{repo}/issues/{issue_number}/reactions",
|
|
1052
|
-
],
|
|
1053
|
-
createForIssueComment: [
|
|
1054
|
-
"POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions",
|
|
1055
|
-
],
|
|
1056
|
-
createForPullRequestReviewComment: [
|
|
1057
|
-
"POST /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions",
|
|
1058
|
-
],
|
|
1059
|
-
createForRelease: [
|
|
1060
|
-
"POST /repos/{owner}/{repo}/releases/{release_id}/reactions",
|
|
1061
|
-
],
|
|
1062
|
-
createForTeamDiscussionCommentInOrg: [
|
|
1063
|
-
"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions",
|
|
1064
|
-
],
|
|
1065
|
-
createForTeamDiscussionInOrg: [
|
|
1066
|
-
"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions",
|
|
1067
|
-
],
|
|
1068
|
-
deleteForCommitComment: [
|
|
1069
|
-
"DELETE /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}",
|
|
1070
|
-
],
|
|
1071
|
-
deleteForIssue: [
|
|
1072
|
-
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}",
|
|
1073
|
-
],
|
|
1074
|
-
deleteForIssueComment: [
|
|
1075
|
-
"DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}",
|
|
1076
|
-
],
|
|
1077
|
-
deleteForPullRequestComment: [
|
|
1078
|
-
"DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}",
|
|
1079
|
-
],
|
|
1080
|
-
deleteForRelease: [
|
|
1081
|
-
"DELETE /repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}",
|
|
1082
|
-
],
|
|
1083
|
-
deleteForTeamDiscussion: [
|
|
1084
|
-
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}",
|
|
1085
|
-
],
|
|
1086
|
-
deleteForTeamDiscussionComment: [
|
|
1087
|
-
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}",
|
|
1088
|
-
],
|
|
1089
|
-
listForCommitComment: [
|
|
1090
|
-
"GET /repos/{owner}/{repo}/comments/{comment_id}/reactions",
|
|
1091
|
-
],
|
|
1092
|
-
listForIssue: ["GET /repos/{owner}/{repo}/issues/{issue_number}/reactions"],
|
|
1093
|
-
listForIssueComment: [
|
|
1094
|
-
"GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions",
|
|
1095
|
-
],
|
|
1096
|
-
listForPullRequestReviewComment: [
|
|
1097
|
-
"GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions",
|
|
1098
|
-
],
|
|
1099
|
-
listForRelease: [
|
|
1100
|
-
"GET /repos/{owner}/{repo}/releases/{release_id}/reactions",
|
|
1101
|
-
],
|
|
1102
|
-
listForTeamDiscussionCommentInOrg: [
|
|
1103
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions",
|
|
1104
|
-
],
|
|
1105
|
-
listForTeamDiscussionInOrg: [
|
|
1106
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions",
|
|
1107
|
-
],
|
|
1108
|
-
},
|
|
1109
|
-
repos: {
|
|
1110
|
-
acceptInvitation: [
|
|
1111
|
-
"PATCH /user/repository_invitations/{invitation_id}",
|
|
1112
|
-
{},
|
|
1113
|
-
{ renamed: ["repos", "acceptInvitationForAuthenticatedUser"] },
|
|
1114
|
-
],
|
|
1115
|
-
acceptInvitationForAuthenticatedUser: [
|
|
1116
|
-
"PATCH /user/repository_invitations/{invitation_id}",
|
|
1117
|
-
],
|
|
1118
|
-
addAppAccessRestrictions: [
|
|
1119
|
-
"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps",
|
|
1120
|
-
{},
|
|
1121
|
-
{ mapToData: "apps" },
|
|
1122
|
-
],
|
|
1123
|
-
addCollaborator: ["PUT /repos/{owner}/{repo}/collaborators/{username}"],
|
|
1124
|
-
addStatusCheckContexts: [
|
|
1125
|
-
"POST /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts",
|
|
1126
|
-
{},
|
|
1127
|
-
{ mapToData: "contexts" },
|
|
1128
|
-
],
|
|
1129
|
-
addTeamAccessRestrictions: [
|
|
1130
|
-
"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams",
|
|
1131
|
-
{},
|
|
1132
|
-
{ mapToData: "teams" },
|
|
1133
|
-
],
|
|
1134
|
-
addUserAccessRestrictions: [
|
|
1135
|
-
"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users",
|
|
1136
|
-
{},
|
|
1137
|
-
{ mapToData: "users" },
|
|
1138
|
-
],
|
|
1139
|
-
checkCollaborator: ["GET /repos/{owner}/{repo}/collaborators/{username}"],
|
|
1140
|
-
checkVulnerabilityAlerts: [
|
|
1141
|
-
"GET /repos/{owner}/{repo}/vulnerability-alerts",
|
|
1142
|
-
],
|
|
1143
|
-
codeownersErrors: ["GET /repos/{owner}/{repo}/codeowners/errors"],
|
|
1144
|
-
compareCommits: ["GET /repos/{owner}/{repo}/compare/{base}...{head}"],
|
|
1145
|
-
compareCommitsWithBasehead: [
|
|
1146
|
-
"GET /repos/{owner}/{repo}/compare/{basehead}",
|
|
1147
|
-
],
|
|
1148
|
-
createAutolink: ["POST /repos/{owner}/{repo}/autolinks"],
|
|
1149
|
-
createCommitComment: [
|
|
1150
|
-
"POST /repos/{owner}/{repo}/commits/{commit_sha}/comments",
|
|
1151
|
-
],
|
|
1152
|
-
createCommitSignatureProtection: [
|
|
1153
|
-
"POST /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures",
|
|
1154
|
-
],
|
|
1155
|
-
createCommitStatus: ["POST /repos/{owner}/{repo}/statuses/{sha}"],
|
|
1156
|
-
createDeployKey: ["POST /repos/{owner}/{repo}/keys"],
|
|
1157
|
-
createDeployment: ["POST /repos/{owner}/{repo}/deployments"],
|
|
1158
|
-
createDeploymentStatus: [
|
|
1159
|
-
"POST /repos/{owner}/{repo}/deployments/{deployment_id}/statuses",
|
|
1160
|
-
],
|
|
1161
|
-
createDispatchEvent: ["POST /repos/{owner}/{repo}/dispatches"],
|
|
1162
|
-
createForAuthenticatedUser: ["POST /user/repos"],
|
|
1163
|
-
createFork: ["POST /repos/{owner}/{repo}/forks"],
|
|
1164
|
-
createInOrg: ["POST /orgs/{org}/repos"],
|
|
1165
|
-
createOrUpdateEnvironment: [
|
|
1166
|
-
"PUT /repos/{owner}/{repo}/environments/{environment_name}",
|
|
1167
|
-
],
|
|
1168
|
-
createOrUpdateFileContents: ["PUT /repos/{owner}/{repo}/contents/{path}"],
|
|
1169
|
-
createPagesSite: ["POST /repos/{owner}/{repo}/pages"],
|
|
1170
|
-
createRelease: ["POST /repos/{owner}/{repo}/releases"],
|
|
1171
|
-
createTagProtection: ["POST /repos/{owner}/{repo}/tags/protection"],
|
|
1172
|
-
createUsingTemplate: [
|
|
1173
|
-
"POST /repos/{template_owner}/{template_repo}/generate",
|
|
1174
|
-
],
|
|
1175
|
-
createWebhook: ["POST /repos/{owner}/{repo}/hooks"],
|
|
1176
|
-
declineInvitation: [
|
|
1177
|
-
"DELETE /user/repository_invitations/{invitation_id}",
|
|
1178
|
-
{},
|
|
1179
|
-
{ renamed: ["repos", "declineInvitationForAuthenticatedUser"] },
|
|
1180
|
-
],
|
|
1181
|
-
declineInvitationForAuthenticatedUser: [
|
|
1182
|
-
"DELETE /user/repository_invitations/{invitation_id}",
|
|
1183
|
-
],
|
|
1184
|
-
delete: ["DELETE /repos/{owner}/{repo}"],
|
|
1185
|
-
deleteAccessRestrictions: [
|
|
1186
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions",
|
|
1187
|
-
],
|
|
1188
|
-
deleteAdminBranchProtection: [
|
|
1189
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins",
|
|
1190
|
-
],
|
|
1191
|
-
deleteAnEnvironment: [
|
|
1192
|
-
"DELETE /repos/{owner}/{repo}/environments/{environment_name}",
|
|
1193
|
-
],
|
|
1194
|
-
deleteAutolink: ["DELETE /repos/{owner}/{repo}/autolinks/{autolink_id}"],
|
|
1195
|
-
deleteBranchProtection: [
|
|
1196
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection",
|
|
1197
|
-
],
|
|
1198
|
-
deleteCommitComment: ["DELETE /repos/{owner}/{repo}/comments/{comment_id}"],
|
|
1199
|
-
deleteCommitSignatureProtection: [
|
|
1200
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures",
|
|
1201
|
-
],
|
|
1202
|
-
deleteDeployKey: ["DELETE /repos/{owner}/{repo}/keys/{key_id}"],
|
|
1203
|
-
deleteDeployment: [
|
|
1204
|
-
"DELETE /repos/{owner}/{repo}/deployments/{deployment_id}",
|
|
1205
|
-
],
|
|
1206
|
-
deleteFile: ["DELETE /repos/{owner}/{repo}/contents/{path}"],
|
|
1207
|
-
deleteInvitation: [
|
|
1208
|
-
"DELETE /repos/{owner}/{repo}/invitations/{invitation_id}",
|
|
1209
|
-
],
|
|
1210
|
-
deletePagesSite: ["DELETE /repos/{owner}/{repo}/pages"],
|
|
1211
|
-
deletePullRequestReviewProtection: [
|
|
1212
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews",
|
|
1213
|
-
],
|
|
1214
|
-
deleteRelease: ["DELETE /repos/{owner}/{repo}/releases/{release_id}"],
|
|
1215
|
-
deleteReleaseAsset: [
|
|
1216
|
-
"DELETE /repos/{owner}/{repo}/releases/assets/{asset_id}",
|
|
1217
|
-
],
|
|
1218
|
-
deleteTagProtection: [
|
|
1219
|
-
"DELETE /repos/{owner}/{repo}/tags/protection/{tag_protection_id}",
|
|
1220
|
-
],
|
|
1221
|
-
deleteWebhook: ["DELETE /repos/{owner}/{repo}/hooks/{hook_id}"],
|
|
1222
|
-
disableAutomatedSecurityFixes: [
|
|
1223
|
-
"DELETE /repos/{owner}/{repo}/automated-security-fixes",
|
|
1224
|
-
],
|
|
1225
|
-
disableLfsForRepo: ["DELETE /repos/{owner}/{repo}/lfs"],
|
|
1226
|
-
disableVulnerabilityAlerts: [
|
|
1227
|
-
"DELETE /repos/{owner}/{repo}/vulnerability-alerts",
|
|
1228
|
-
],
|
|
1229
|
-
downloadArchive: [
|
|
1230
|
-
"GET /repos/{owner}/{repo}/zipball/{ref}",
|
|
1231
|
-
{},
|
|
1232
|
-
{ renamed: ["repos", "downloadZipballArchive"] },
|
|
1233
|
-
],
|
|
1234
|
-
downloadTarballArchive: ["GET /repos/{owner}/{repo}/tarball/{ref}"],
|
|
1235
|
-
downloadZipballArchive: ["GET /repos/{owner}/{repo}/zipball/{ref}"],
|
|
1236
|
-
enableAutomatedSecurityFixes: [
|
|
1237
|
-
"PUT /repos/{owner}/{repo}/automated-security-fixes",
|
|
1238
|
-
],
|
|
1239
|
-
enableLfsForRepo: ["PUT /repos/{owner}/{repo}/lfs"],
|
|
1240
|
-
enableVulnerabilityAlerts: [
|
|
1241
|
-
"PUT /repos/{owner}/{repo}/vulnerability-alerts",
|
|
1242
|
-
],
|
|
1243
|
-
generateReleaseNotes: [
|
|
1244
|
-
"POST /repos/{owner}/{repo}/releases/generate-notes",
|
|
1245
|
-
],
|
|
1246
|
-
get: ["GET /repos/{owner}/{repo}"],
|
|
1247
|
-
getAccessRestrictions: [
|
|
1248
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions",
|
|
1249
|
-
],
|
|
1250
|
-
getAdminBranchProtection: [
|
|
1251
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins",
|
|
1252
|
-
],
|
|
1253
|
-
getAllEnvironments: ["GET /repos/{owner}/{repo}/environments"],
|
|
1254
|
-
getAllStatusCheckContexts: [
|
|
1255
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts",
|
|
1256
|
-
],
|
|
1257
|
-
getAllTopics: ["GET /repos/{owner}/{repo}/topics"],
|
|
1258
|
-
getAppsWithAccessToProtectedBranch: [
|
|
1259
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps",
|
|
1260
|
-
],
|
|
1261
|
-
getAutolink: ["GET /repos/{owner}/{repo}/autolinks/{autolink_id}"],
|
|
1262
|
-
getBranch: ["GET /repos/{owner}/{repo}/branches/{branch}"],
|
|
1263
|
-
getBranchProtection: [
|
|
1264
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection",
|
|
1265
|
-
],
|
|
1266
|
-
getClones: ["GET /repos/{owner}/{repo}/traffic/clones"],
|
|
1267
|
-
getCodeFrequencyStats: ["GET /repos/{owner}/{repo}/stats/code_frequency"],
|
|
1268
|
-
getCollaboratorPermissionLevel: [
|
|
1269
|
-
"GET /repos/{owner}/{repo}/collaborators/{username}/permission",
|
|
1270
|
-
],
|
|
1271
|
-
getCombinedStatusForRef: ["GET /repos/{owner}/{repo}/commits/{ref}/status"],
|
|
1272
|
-
getCommit: ["GET /repos/{owner}/{repo}/commits/{ref}"],
|
|
1273
|
-
getCommitActivityStats: ["GET /repos/{owner}/{repo}/stats/commit_activity"],
|
|
1274
|
-
getCommitComment: ["GET /repos/{owner}/{repo}/comments/{comment_id}"],
|
|
1275
|
-
getCommitSignatureProtection: [
|
|
1276
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures",
|
|
1277
|
-
],
|
|
1278
|
-
getCommunityProfileMetrics: ["GET /repos/{owner}/{repo}/community/profile"],
|
|
1279
|
-
getContent: ["GET /repos/{owner}/{repo}/contents/{path}"],
|
|
1280
|
-
getContributorsStats: ["GET /repos/{owner}/{repo}/stats/contributors"],
|
|
1281
|
-
getDeployKey: ["GET /repos/{owner}/{repo}/keys/{key_id}"],
|
|
1282
|
-
getDeployment: ["GET /repos/{owner}/{repo}/deployments/{deployment_id}"],
|
|
1283
|
-
getDeploymentStatus: [
|
|
1284
|
-
"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}",
|
|
1285
|
-
],
|
|
1286
|
-
getEnvironment: [
|
|
1287
|
-
"GET /repos/{owner}/{repo}/environments/{environment_name}",
|
|
1288
|
-
],
|
|
1289
|
-
getLatestPagesBuild: ["GET /repos/{owner}/{repo}/pages/builds/latest"],
|
|
1290
|
-
getLatestRelease: ["GET /repos/{owner}/{repo}/releases/latest"],
|
|
1291
|
-
getPages: ["GET /repos/{owner}/{repo}/pages"],
|
|
1292
|
-
getPagesBuild: ["GET /repos/{owner}/{repo}/pages/builds/{build_id}"],
|
|
1293
|
-
getPagesHealthCheck: ["GET /repos/{owner}/{repo}/pages/health"],
|
|
1294
|
-
getParticipationStats: ["GET /repos/{owner}/{repo}/stats/participation"],
|
|
1295
|
-
getPullRequestReviewProtection: [
|
|
1296
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews",
|
|
1297
|
-
],
|
|
1298
|
-
getPunchCardStats: ["GET /repos/{owner}/{repo}/stats/punch_card"],
|
|
1299
|
-
getReadme: ["GET /repos/{owner}/{repo}/readme"],
|
|
1300
|
-
getReadmeInDirectory: ["GET /repos/{owner}/{repo}/readme/{dir}"],
|
|
1301
|
-
getRelease: ["GET /repos/{owner}/{repo}/releases/{release_id}"],
|
|
1302
|
-
getReleaseAsset: ["GET /repos/{owner}/{repo}/releases/assets/{asset_id}"],
|
|
1303
|
-
getReleaseByTag: ["GET /repos/{owner}/{repo}/releases/tags/{tag}"],
|
|
1304
|
-
getStatusChecksProtection: [
|
|
1305
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks",
|
|
1306
|
-
],
|
|
1307
|
-
getTeamsWithAccessToProtectedBranch: [
|
|
1308
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams",
|
|
1309
|
-
],
|
|
1310
|
-
getTopPaths: ["GET /repos/{owner}/{repo}/traffic/popular/paths"],
|
|
1311
|
-
getTopReferrers: ["GET /repos/{owner}/{repo}/traffic/popular/referrers"],
|
|
1312
|
-
getUsersWithAccessToProtectedBranch: [
|
|
1313
|
-
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users",
|
|
1314
|
-
],
|
|
1315
|
-
getViews: ["GET /repos/{owner}/{repo}/traffic/views"],
|
|
1316
|
-
getWebhook: ["GET /repos/{owner}/{repo}/hooks/{hook_id}"],
|
|
1317
|
-
getWebhookConfigForRepo: [
|
|
1318
|
-
"GET /repos/{owner}/{repo}/hooks/{hook_id}/config",
|
|
1319
|
-
],
|
|
1320
|
-
getWebhookDelivery: [
|
|
1321
|
-
"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}",
|
|
1322
|
-
],
|
|
1323
|
-
listAutolinks: ["GET /repos/{owner}/{repo}/autolinks"],
|
|
1324
|
-
listBranches: ["GET /repos/{owner}/{repo}/branches"],
|
|
1325
|
-
listBranchesForHeadCommit: [
|
|
1326
|
-
"GET /repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head",
|
|
1327
|
-
],
|
|
1328
|
-
listCollaborators: ["GET /repos/{owner}/{repo}/collaborators"],
|
|
1329
|
-
listCommentsForCommit: [
|
|
1330
|
-
"GET /repos/{owner}/{repo}/commits/{commit_sha}/comments",
|
|
1331
|
-
],
|
|
1332
|
-
listCommitCommentsForRepo: ["GET /repos/{owner}/{repo}/comments"],
|
|
1333
|
-
listCommitStatusesForRef: [
|
|
1334
|
-
"GET /repos/{owner}/{repo}/commits/{ref}/statuses",
|
|
1335
|
-
],
|
|
1336
|
-
listCommits: ["GET /repos/{owner}/{repo}/commits"],
|
|
1337
|
-
listContributors: ["GET /repos/{owner}/{repo}/contributors"],
|
|
1338
|
-
listDeployKeys: ["GET /repos/{owner}/{repo}/keys"],
|
|
1339
|
-
listDeploymentStatuses: [
|
|
1340
|
-
"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses",
|
|
1341
|
-
],
|
|
1342
|
-
listDeployments: ["GET /repos/{owner}/{repo}/deployments"],
|
|
1343
|
-
listForAuthenticatedUser: ["GET /user/repos"],
|
|
1344
|
-
listForOrg: ["GET /orgs/{org}/repos"],
|
|
1345
|
-
listForUser: ["GET /users/{username}/repos"],
|
|
1346
|
-
listForks: ["GET /repos/{owner}/{repo}/forks"],
|
|
1347
|
-
listInvitations: ["GET /repos/{owner}/{repo}/invitations"],
|
|
1348
|
-
listInvitationsForAuthenticatedUser: ["GET /user/repository_invitations"],
|
|
1349
|
-
listLanguages: ["GET /repos/{owner}/{repo}/languages"],
|
|
1350
|
-
listPagesBuilds: ["GET /repos/{owner}/{repo}/pages/builds"],
|
|
1351
|
-
listPublic: ["GET /repositories"],
|
|
1352
|
-
listPullRequestsAssociatedWithCommit: [
|
|
1353
|
-
"GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls",
|
|
1354
|
-
],
|
|
1355
|
-
listReleaseAssets: [
|
|
1356
|
-
"GET /repos/{owner}/{repo}/releases/{release_id}/assets",
|
|
1357
|
-
],
|
|
1358
|
-
listReleases: ["GET /repos/{owner}/{repo}/releases"],
|
|
1359
|
-
listTagProtection: ["GET /repos/{owner}/{repo}/tags/protection"],
|
|
1360
|
-
listTags: ["GET /repos/{owner}/{repo}/tags"],
|
|
1361
|
-
listTeams: ["GET /repos/{owner}/{repo}/teams"],
|
|
1362
|
-
listWebhookDeliveries: [
|
|
1363
|
-
"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries",
|
|
1364
|
-
],
|
|
1365
|
-
listWebhooks: ["GET /repos/{owner}/{repo}/hooks"],
|
|
1366
|
-
merge: ["POST /repos/{owner}/{repo}/merges"],
|
|
1367
|
-
mergeUpstream: ["POST /repos/{owner}/{repo}/merge-upstream"],
|
|
1368
|
-
pingWebhook: ["POST /repos/{owner}/{repo}/hooks/{hook_id}/pings"],
|
|
1369
|
-
redeliverWebhookDelivery: [
|
|
1370
|
-
"POST /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts",
|
|
1371
|
-
],
|
|
1372
|
-
removeAppAccessRestrictions: [
|
|
1373
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps",
|
|
1374
|
-
{},
|
|
1375
|
-
{ mapToData: "apps" },
|
|
1376
|
-
],
|
|
1377
|
-
removeCollaborator: [
|
|
1378
|
-
"DELETE /repos/{owner}/{repo}/collaborators/{username}",
|
|
1379
|
-
],
|
|
1380
|
-
removeStatusCheckContexts: [
|
|
1381
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts",
|
|
1382
|
-
{},
|
|
1383
|
-
{ mapToData: "contexts" },
|
|
1384
|
-
],
|
|
1385
|
-
removeStatusCheckProtection: [
|
|
1386
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks",
|
|
1387
|
-
],
|
|
1388
|
-
removeTeamAccessRestrictions: [
|
|
1389
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams",
|
|
1390
|
-
{},
|
|
1391
|
-
{ mapToData: "teams" },
|
|
1392
|
-
],
|
|
1393
|
-
removeUserAccessRestrictions: [
|
|
1394
|
-
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users",
|
|
1395
|
-
{},
|
|
1396
|
-
{ mapToData: "users" },
|
|
1397
|
-
],
|
|
1398
|
-
renameBranch: ["POST /repos/{owner}/{repo}/branches/{branch}/rename"],
|
|
1399
|
-
replaceAllTopics: ["PUT /repos/{owner}/{repo}/topics"],
|
|
1400
|
-
requestPagesBuild: ["POST /repos/{owner}/{repo}/pages/builds"],
|
|
1401
|
-
setAdminBranchProtection: [
|
|
1402
|
-
"POST /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins",
|
|
1403
|
-
],
|
|
1404
|
-
setAppAccessRestrictions: [
|
|
1405
|
-
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps",
|
|
1406
|
-
{},
|
|
1407
|
-
{ mapToData: "apps" },
|
|
1408
|
-
],
|
|
1409
|
-
setStatusCheckContexts: [
|
|
1410
|
-
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts",
|
|
1411
|
-
{},
|
|
1412
|
-
{ mapToData: "contexts" },
|
|
1413
|
-
],
|
|
1414
|
-
setTeamAccessRestrictions: [
|
|
1415
|
-
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams",
|
|
1416
|
-
{},
|
|
1417
|
-
{ mapToData: "teams" },
|
|
1418
|
-
],
|
|
1419
|
-
setUserAccessRestrictions: [
|
|
1420
|
-
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users",
|
|
1421
|
-
{},
|
|
1422
|
-
{ mapToData: "users" },
|
|
1423
|
-
],
|
|
1424
|
-
testPushWebhook: ["POST /repos/{owner}/{repo}/hooks/{hook_id}/tests"],
|
|
1425
|
-
transfer: ["POST /repos/{owner}/{repo}/transfer"],
|
|
1426
|
-
update: ["PATCH /repos/{owner}/{repo}"],
|
|
1427
|
-
updateBranchProtection: [
|
|
1428
|
-
"PUT /repos/{owner}/{repo}/branches/{branch}/protection",
|
|
1429
|
-
],
|
|
1430
|
-
updateCommitComment: ["PATCH /repos/{owner}/{repo}/comments/{comment_id}"],
|
|
1431
|
-
updateInformationAboutPagesSite: ["PUT /repos/{owner}/{repo}/pages"],
|
|
1432
|
-
updateInvitation: [
|
|
1433
|
-
"PATCH /repos/{owner}/{repo}/invitations/{invitation_id}",
|
|
1434
|
-
],
|
|
1435
|
-
updatePullRequestReviewProtection: [
|
|
1436
|
-
"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews",
|
|
1437
|
-
],
|
|
1438
|
-
updateRelease: ["PATCH /repos/{owner}/{repo}/releases/{release_id}"],
|
|
1439
|
-
updateReleaseAsset: [
|
|
1440
|
-
"PATCH /repos/{owner}/{repo}/releases/assets/{asset_id}",
|
|
1441
|
-
],
|
|
1442
|
-
updateStatusCheckPotection: [
|
|
1443
|
-
"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks",
|
|
1444
|
-
{},
|
|
1445
|
-
{ renamed: ["repos", "updateStatusCheckProtection"] },
|
|
1446
|
-
],
|
|
1447
|
-
updateStatusCheckProtection: [
|
|
1448
|
-
"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks",
|
|
1449
|
-
],
|
|
1450
|
-
updateWebhook: ["PATCH /repos/{owner}/{repo}/hooks/{hook_id}"],
|
|
1451
|
-
updateWebhookConfigForRepo: [
|
|
1452
|
-
"PATCH /repos/{owner}/{repo}/hooks/{hook_id}/config",
|
|
1453
|
-
],
|
|
1454
|
-
uploadReleaseAsset: [
|
|
1455
|
-
"POST /repos/{owner}/{repo}/releases/{release_id}/assets{?name,label}",
|
|
1456
|
-
{ baseUrl: "https://uploads.github.com" },
|
|
1457
|
-
],
|
|
1458
|
-
},
|
|
1459
|
-
search: {
|
|
1460
|
-
code: ["GET /search/code"],
|
|
1461
|
-
commits: ["GET /search/commits"],
|
|
1462
|
-
issuesAndPullRequests: ["GET /search/issues"],
|
|
1463
|
-
labels: ["GET /search/labels"],
|
|
1464
|
-
repos: ["GET /search/repositories"],
|
|
1465
|
-
topics: ["GET /search/topics"],
|
|
1466
|
-
users: ["GET /search/users"],
|
|
1467
|
-
},
|
|
1468
|
-
secretScanning: {
|
|
1469
|
-
getAlert: [
|
|
1470
|
-
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}",
|
|
1471
|
-
],
|
|
1472
|
-
listAlertsForEnterprise: [
|
|
1473
|
-
"GET /enterprises/{enterprise}/secret-scanning/alerts",
|
|
1474
|
-
],
|
|
1475
|
-
listAlertsForOrg: ["GET /orgs/{org}/secret-scanning/alerts"],
|
|
1476
|
-
listAlertsForRepo: ["GET /repos/{owner}/{repo}/secret-scanning/alerts"],
|
|
1477
|
-
listLocationsForAlert: [
|
|
1478
|
-
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations",
|
|
1479
|
-
],
|
|
1480
|
-
updateAlert: [
|
|
1481
|
-
"PATCH /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}",
|
|
1482
|
-
],
|
|
1483
|
-
},
|
|
1484
|
-
teams: {
|
|
1485
|
-
addOrUpdateMembershipForUserInOrg: [
|
|
1486
|
-
"PUT /orgs/{org}/teams/{team_slug}/memberships/{username}",
|
|
1487
|
-
],
|
|
1488
|
-
addOrUpdateProjectPermissionsInOrg: [
|
|
1489
|
-
"PUT /orgs/{org}/teams/{team_slug}/projects/{project_id}",
|
|
1490
|
-
],
|
|
1491
|
-
addOrUpdateRepoPermissionsInOrg: [
|
|
1492
|
-
"PUT /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}",
|
|
1493
|
-
],
|
|
1494
|
-
checkPermissionsForProjectInOrg: [
|
|
1495
|
-
"GET /orgs/{org}/teams/{team_slug}/projects/{project_id}",
|
|
1496
|
-
],
|
|
1497
|
-
checkPermissionsForRepoInOrg: [
|
|
1498
|
-
"GET /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}",
|
|
1499
|
-
],
|
|
1500
|
-
create: ["POST /orgs/{org}/teams"],
|
|
1501
|
-
createDiscussionCommentInOrg: [
|
|
1502
|
-
"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments",
|
|
1503
|
-
],
|
|
1504
|
-
createDiscussionInOrg: ["POST /orgs/{org}/teams/{team_slug}/discussions"],
|
|
1505
|
-
deleteDiscussionCommentInOrg: [
|
|
1506
|
-
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}",
|
|
1507
|
-
],
|
|
1508
|
-
deleteDiscussionInOrg: [
|
|
1509
|
-
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}",
|
|
1510
|
-
],
|
|
1511
|
-
deleteInOrg: ["DELETE /orgs/{org}/teams/{team_slug}"],
|
|
1512
|
-
getByName: ["GET /orgs/{org}/teams/{team_slug}"],
|
|
1513
|
-
getDiscussionCommentInOrg: [
|
|
1514
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}",
|
|
1515
|
-
],
|
|
1516
|
-
getDiscussionInOrg: [
|
|
1517
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}",
|
|
1518
|
-
],
|
|
1519
|
-
getMembershipForUserInOrg: [
|
|
1520
|
-
"GET /orgs/{org}/teams/{team_slug}/memberships/{username}",
|
|
1521
|
-
],
|
|
1522
|
-
list: ["GET /orgs/{org}/teams"],
|
|
1523
|
-
listChildInOrg: ["GET /orgs/{org}/teams/{team_slug}/teams"],
|
|
1524
|
-
listDiscussionCommentsInOrg: [
|
|
1525
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments",
|
|
1526
|
-
],
|
|
1527
|
-
listDiscussionsInOrg: ["GET /orgs/{org}/teams/{team_slug}/discussions"],
|
|
1528
|
-
listForAuthenticatedUser: ["GET /user/teams"],
|
|
1529
|
-
listMembersInOrg: ["GET /orgs/{org}/teams/{team_slug}/members"],
|
|
1530
|
-
listPendingInvitationsInOrg: [
|
|
1531
|
-
"GET /orgs/{org}/teams/{team_slug}/invitations",
|
|
1532
|
-
],
|
|
1533
|
-
listProjectsInOrg: ["GET /orgs/{org}/teams/{team_slug}/projects"],
|
|
1534
|
-
listReposInOrg: ["GET /orgs/{org}/teams/{team_slug}/repos"],
|
|
1535
|
-
removeMembershipForUserInOrg: [
|
|
1536
|
-
"DELETE /orgs/{org}/teams/{team_slug}/memberships/{username}",
|
|
1537
|
-
],
|
|
1538
|
-
removeProjectInOrg: [
|
|
1539
|
-
"DELETE /orgs/{org}/teams/{team_slug}/projects/{project_id}",
|
|
1540
|
-
],
|
|
1541
|
-
removeRepoInOrg: [
|
|
1542
|
-
"DELETE /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}",
|
|
1543
|
-
],
|
|
1544
|
-
updateDiscussionCommentInOrg: [
|
|
1545
|
-
"PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}",
|
|
1546
|
-
],
|
|
1547
|
-
updateDiscussionInOrg: [
|
|
1548
|
-
"PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}",
|
|
1549
|
-
],
|
|
1550
|
-
updateInOrg: ["PATCH /orgs/{org}/teams/{team_slug}"],
|
|
1551
|
-
},
|
|
1552
|
-
users: {
|
|
1553
|
-
addEmailForAuthenticated: [
|
|
1554
|
-
"POST /user/emails",
|
|
1555
|
-
{},
|
|
1556
|
-
{ renamed: ["users", "addEmailForAuthenticatedUser"] },
|
|
1557
|
-
],
|
|
1558
|
-
addEmailForAuthenticatedUser: ["POST /user/emails"],
|
|
1559
|
-
block: ["PUT /user/blocks/{username}"],
|
|
1560
|
-
checkBlocked: ["GET /user/blocks/{username}"],
|
|
1561
|
-
checkFollowingForUser: ["GET /users/{username}/following/{target_user}"],
|
|
1562
|
-
checkPersonIsFollowedByAuthenticated: ["GET /user/following/{username}"],
|
|
1563
|
-
createGpgKeyForAuthenticated: [
|
|
1564
|
-
"POST /user/gpg_keys",
|
|
1565
|
-
{},
|
|
1566
|
-
{ renamed: ["users", "createGpgKeyForAuthenticatedUser"] },
|
|
1567
|
-
],
|
|
1568
|
-
createGpgKeyForAuthenticatedUser: ["POST /user/gpg_keys"],
|
|
1569
|
-
createPublicSshKeyForAuthenticated: [
|
|
1570
|
-
"POST /user/keys",
|
|
1571
|
-
{},
|
|
1572
|
-
{ renamed: ["users", "createPublicSshKeyForAuthenticatedUser"] },
|
|
1573
|
-
],
|
|
1574
|
-
createPublicSshKeyForAuthenticatedUser: ["POST /user/keys"],
|
|
1575
|
-
deleteEmailForAuthenticated: [
|
|
1576
|
-
"DELETE /user/emails",
|
|
1577
|
-
{},
|
|
1578
|
-
{ renamed: ["users", "deleteEmailForAuthenticatedUser"] },
|
|
1579
|
-
],
|
|
1580
|
-
deleteEmailForAuthenticatedUser: ["DELETE /user/emails"],
|
|
1581
|
-
deleteGpgKeyForAuthenticated: [
|
|
1582
|
-
"DELETE /user/gpg_keys/{gpg_key_id}",
|
|
1583
|
-
{},
|
|
1584
|
-
{ renamed: ["users", "deleteGpgKeyForAuthenticatedUser"] },
|
|
1585
|
-
],
|
|
1586
|
-
deleteGpgKeyForAuthenticatedUser: ["DELETE /user/gpg_keys/{gpg_key_id}"],
|
|
1587
|
-
deletePublicSshKeyForAuthenticated: [
|
|
1588
|
-
"DELETE /user/keys/{key_id}",
|
|
1589
|
-
{},
|
|
1590
|
-
{ renamed: ["users", "deletePublicSshKeyForAuthenticatedUser"] },
|
|
1591
|
-
],
|
|
1592
|
-
deletePublicSshKeyForAuthenticatedUser: ["DELETE /user/keys/{key_id}"],
|
|
1593
|
-
follow: ["PUT /user/following/{username}"],
|
|
1594
|
-
getAuthenticated: ["GET /user"],
|
|
1595
|
-
getByUsername: ["GET /users/{username}"],
|
|
1596
|
-
getContextForUser: ["GET /users/{username}/hovercard"],
|
|
1597
|
-
getGpgKeyForAuthenticated: [
|
|
1598
|
-
"GET /user/gpg_keys/{gpg_key_id}",
|
|
1599
|
-
{},
|
|
1600
|
-
{ renamed: ["users", "getGpgKeyForAuthenticatedUser"] },
|
|
1601
|
-
],
|
|
1602
|
-
getGpgKeyForAuthenticatedUser: ["GET /user/gpg_keys/{gpg_key_id}"],
|
|
1603
|
-
getPublicSshKeyForAuthenticated: [
|
|
1604
|
-
"GET /user/keys/{key_id}",
|
|
1605
|
-
{},
|
|
1606
|
-
{ renamed: ["users", "getPublicSshKeyForAuthenticatedUser"] },
|
|
1607
|
-
],
|
|
1608
|
-
getPublicSshKeyForAuthenticatedUser: ["GET /user/keys/{key_id}"],
|
|
1609
|
-
list: ["GET /users"],
|
|
1610
|
-
listBlockedByAuthenticated: [
|
|
1611
|
-
"GET /user/blocks",
|
|
1612
|
-
{},
|
|
1613
|
-
{ renamed: ["users", "listBlockedByAuthenticatedUser"] },
|
|
1614
|
-
],
|
|
1615
|
-
listBlockedByAuthenticatedUser: ["GET /user/blocks"],
|
|
1616
|
-
listEmailsForAuthenticated: [
|
|
1617
|
-
"GET /user/emails",
|
|
1618
|
-
{},
|
|
1619
|
-
{ renamed: ["users", "listEmailsForAuthenticatedUser"] },
|
|
1620
|
-
],
|
|
1621
|
-
listEmailsForAuthenticatedUser: ["GET /user/emails"],
|
|
1622
|
-
listFollowedByAuthenticated: [
|
|
1623
|
-
"GET /user/following",
|
|
1624
|
-
{},
|
|
1625
|
-
{ renamed: ["users", "listFollowedByAuthenticatedUser"] },
|
|
1626
|
-
],
|
|
1627
|
-
listFollowedByAuthenticatedUser: ["GET /user/following"],
|
|
1628
|
-
listFollowersForAuthenticatedUser: ["GET /user/followers"],
|
|
1629
|
-
listFollowersForUser: ["GET /users/{username}/followers"],
|
|
1630
|
-
listFollowingForUser: ["GET /users/{username}/following"],
|
|
1631
|
-
listGpgKeysForAuthenticated: [
|
|
1632
|
-
"GET /user/gpg_keys",
|
|
1633
|
-
{},
|
|
1634
|
-
{ renamed: ["users", "listGpgKeysForAuthenticatedUser"] },
|
|
1635
|
-
],
|
|
1636
|
-
listGpgKeysForAuthenticatedUser: ["GET /user/gpg_keys"],
|
|
1637
|
-
listGpgKeysForUser: ["GET /users/{username}/gpg_keys"],
|
|
1638
|
-
listPublicEmailsForAuthenticated: [
|
|
1639
|
-
"GET /user/public_emails",
|
|
1640
|
-
{},
|
|
1641
|
-
{ renamed: ["users", "listPublicEmailsForAuthenticatedUser"] },
|
|
1642
|
-
],
|
|
1643
|
-
listPublicEmailsForAuthenticatedUser: ["GET /user/public_emails"],
|
|
1644
|
-
listPublicKeysForUser: ["GET /users/{username}/keys"],
|
|
1645
|
-
listPublicSshKeysForAuthenticated: [
|
|
1646
|
-
"GET /user/keys",
|
|
1647
|
-
{},
|
|
1648
|
-
{ renamed: ["users", "listPublicSshKeysForAuthenticatedUser"] },
|
|
1649
|
-
],
|
|
1650
|
-
listPublicSshKeysForAuthenticatedUser: ["GET /user/keys"],
|
|
1651
|
-
setPrimaryEmailVisibilityForAuthenticated: [
|
|
1652
|
-
"PATCH /user/email/visibility",
|
|
1653
|
-
{},
|
|
1654
|
-
{ renamed: ["users", "setPrimaryEmailVisibilityForAuthenticatedUser"] },
|
|
1655
|
-
],
|
|
1656
|
-
setPrimaryEmailVisibilityForAuthenticatedUser: [
|
|
1657
|
-
"PATCH /user/email/visibility",
|
|
1658
|
-
],
|
|
1659
|
-
unblock: ["DELETE /user/blocks/{username}"],
|
|
1660
|
-
unfollow: ["DELETE /user/following/{username}"],
|
|
1661
|
-
updateAuthenticated: ["PATCH /user"],
|
|
1662
|
-
},
|
|
1663
|
-
};
|
|
1664
|
-
|
|
1665
|
-
const VERSION = "5.16.2";
|
|
1666
|
-
|
|
1667
|
-
function endpointsToMethods(octokit, endpointsMap) {
|
|
1668
|
-
const newMethods = {};
|
|
1669
|
-
for (const [scope, endpoints] of Object.entries(endpointsMap)) {
|
|
1670
|
-
for (const [methodName, endpoint] of Object.entries(endpoints)) {
|
|
1671
|
-
const [route, defaults, decorations] = endpoint;
|
|
1672
|
-
const [method, url] = route.split(/ /);
|
|
1673
|
-
const endpointDefaults = Object.assign({ method, url }, defaults);
|
|
1674
|
-
if (!newMethods[scope]) {
|
|
1675
|
-
newMethods[scope] = {};
|
|
1676
|
-
}
|
|
1677
|
-
const scopeMethods = newMethods[scope];
|
|
1678
|
-
if (decorations) {
|
|
1679
|
-
scopeMethods[methodName] = decorate(octokit, scope, methodName, endpointDefaults, decorations);
|
|
1680
|
-
continue;
|
|
1681
|
-
}
|
|
1682
|
-
scopeMethods[methodName] = octokit.request.defaults(endpointDefaults);
|
|
1683
|
-
}
|
|
1684
|
-
}
|
|
1685
|
-
return newMethods;
|
|
1686
|
-
}
|
|
1687
|
-
function decorate(octokit, scope, methodName, defaults, decorations) {
|
|
1688
|
-
const requestWithDefaults = octokit.request.defaults(defaults);
|
|
1689
|
-
/* istanbul ignore next */
|
|
1690
|
-
function withDecorations(...args) {
|
|
1691
|
-
// @ts-ignore https://github.com/microsoft/TypeScript/issues/25488
|
|
1692
|
-
let options = requestWithDefaults.endpoint.merge(...args);
|
|
1693
|
-
// There are currently no other decorations than `.mapToData`
|
|
1694
|
-
if (decorations.mapToData) {
|
|
1695
|
-
options = Object.assign({}, options, {
|
|
1696
|
-
data: options[decorations.mapToData],
|
|
1697
|
-
[decorations.mapToData]: undefined,
|
|
1698
|
-
});
|
|
1699
|
-
return requestWithDefaults(options);
|
|
1700
|
-
}
|
|
1701
|
-
if (decorations.renamed) {
|
|
1702
|
-
const [newScope, newMethodName] = decorations.renamed;
|
|
1703
|
-
octokit.log.warn(`octokit.${scope}.${methodName}() has been renamed to octokit.${newScope}.${newMethodName}()`);
|
|
1704
|
-
}
|
|
1705
|
-
if (decorations.deprecated) {
|
|
1706
|
-
octokit.log.warn(decorations.deprecated);
|
|
1707
|
-
}
|
|
1708
|
-
if (decorations.renamedParameters) {
|
|
1709
|
-
// @ts-ignore https://github.com/microsoft/TypeScript/issues/25488
|
|
1710
|
-
const options = requestWithDefaults.endpoint.merge(...args);
|
|
1711
|
-
for (const [name, alias] of Object.entries(decorations.renamedParameters)) {
|
|
1712
|
-
if (name in options) {
|
|
1713
|
-
octokit.log.warn(`"${name}" parameter is deprecated for "octokit.${scope}.${methodName}()". Use "${alias}" instead`);
|
|
1714
|
-
if (!(alias in options)) {
|
|
1715
|
-
options[alias] = options[name];
|
|
1716
|
-
}
|
|
1717
|
-
delete options[name];
|
|
1718
|
-
}
|
|
1719
|
-
}
|
|
1720
|
-
return requestWithDefaults(options);
|
|
1721
|
-
}
|
|
1722
|
-
// @ts-ignore https://github.com/microsoft/TypeScript/issues/25488
|
|
1723
|
-
return requestWithDefaults(...args);
|
|
1724
|
-
}
|
|
1725
|
-
return Object.assign(withDecorations, requestWithDefaults);
|
|
1726
|
-
}
|
|
1727
|
-
|
|
1728
|
-
function restEndpointMethods(octokit) {
|
|
1729
|
-
const api = endpointsToMethods(octokit, Endpoints);
|
|
1730
|
-
return {
|
|
1731
|
-
rest: api,
|
|
1732
|
-
};
|
|
1733
|
-
}
|
|
1734
|
-
restEndpointMethods.VERSION = VERSION;
|
|
1735
|
-
function legacyRestEndpointMethods(octokit) {
|
|
1736
|
-
const api = endpointsToMethods(octokit, Endpoints);
|
|
1737
|
-
return {
|
|
1738
|
-
...api,
|
|
1739
|
-
rest: api,
|
|
1740
|
-
};
|
|
1741
|
-
}
|
|
1742
|
-
legacyRestEndpointMethods.VERSION = VERSION;
|
|
1743
|
-
|
|
1744
|
-
export { legacyRestEndpointMethods, restEndpointMethods };
|
|
1745
|
-
//# sourceMappingURL=index.js.map
|