@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
package/node_modules/@octokit/plugin-paginate-rest/dist-types/generated/paginating-endpoints.d.ts
DELETED
|
@@ -1,1612 +0,0 @@
|
|
|
1
|
-
import { Endpoints } from "@octokit/types";
|
|
2
|
-
export interface PaginatingEndpoints {
|
|
3
|
-
/**
|
|
4
|
-
* @see https://docs.github.com/rest/reference/apps#list-deliveries-for-an-app-webhook
|
|
5
|
-
*/
|
|
6
|
-
"GET /app/hook/deliveries": {
|
|
7
|
-
parameters: Endpoints["GET /app/hook/deliveries"]["parameters"];
|
|
8
|
-
response: Endpoints["GET /app/hook/deliveries"]["response"];
|
|
9
|
-
};
|
|
10
|
-
/**
|
|
11
|
-
* @see https://docs.github.com/rest/reference/apps#list-installations-for-the-authenticated-app
|
|
12
|
-
*/
|
|
13
|
-
"GET /app/installations": {
|
|
14
|
-
parameters: Endpoints["GET /app/installations"]["parameters"];
|
|
15
|
-
response: Endpoints["GET /app/installations"]["response"];
|
|
16
|
-
};
|
|
17
|
-
/**
|
|
18
|
-
* @see https://docs.github.com/rest/reference/oauth-authorizations#list-your-grants
|
|
19
|
-
*/
|
|
20
|
-
"GET /applications/grants": {
|
|
21
|
-
parameters: Endpoints["GET /applications/grants"]["parameters"];
|
|
22
|
-
response: Endpoints["GET /applications/grants"]["response"];
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* @see https://docs.github.com/rest/reference/oauth-authorizations#list-your-authorizations
|
|
26
|
-
*/
|
|
27
|
-
"GET /authorizations": {
|
|
28
|
-
parameters: Endpoints["GET /authorizations"]["parameters"];
|
|
29
|
-
response: Endpoints["GET /authorizations"]["response"];
|
|
30
|
-
};
|
|
31
|
-
/**
|
|
32
|
-
* @see https://docs.github.com/rest/reference/actions#list-selected-organizations-enabled-for-github-actions-in-an-enterprise
|
|
33
|
-
*/
|
|
34
|
-
"GET /enterprises/{enterprise}/actions/permissions/organizations": {
|
|
35
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/actions/permissions/organizations"]["parameters"];
|
|
36
|
-
response: Endpoints["GET /enterprises/{enterprise}/actions/permissions/organizations"]["response"] & {
|
|
37
|
-
data: Endpoints["GET /enterprises/{enterprise}/actions/permissions/organizations"]["response"]["data"]["organizations"];
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
/**
|
|
41
|
-
* @see https://docs.github.com/rest/reference/actions#list-self-hosted-runner-groups-for-an-enterprise
|
|
42
|
-
*/
|
|
43
|
-
"GET /enterprises/{enterprise}/actions/runner-groups": {
|
|
44
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups"]["parameters"];
|
|
45
|
-
response: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups"]["response"] & {
|
|
46
|
-
data: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups"]["response"]["data"]["runner_groups"];
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
|
-
/**
|
|
50
|
-
* @see https://docs.github.com/rest/reference/actions#list-organization-access-to-a-self-hosted-runner-group-in-a-enterprise
|
|
51
|
-
*/
|
|
52
|
-
"GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations": {
|
|
53
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations"]["parameters"];
|
|
54
|
-
response: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations"]["response"] & {
|
|
55
|
-
data: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations"]["response"]["data"]["organizations"];
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
/**
|
|
59
|
-
* @see https://docs.github.com/rest/reference/actions#list-self-hosted-runners-in-a-group-for-an-enterprise
|
|
60
|
-
*/
|
|
61
|
-
"GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners": {
|
|
62
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners"]["parameters"];
|
|
63
|
-
response: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners"]["response"] & {
|
|
64
|
-
data: Endpoints["GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners"]["response"]["data"]["runners"];
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
|
-
/**
|
|
68
|
-
* @see https://docs.github.com/rest/reference/actions#list-self-hosted-runners-for-an-enterprise
|
|
69
|
-
*/
|
|
70
|
-
"GET /enterprises/{enterprise}/actions/runners": {
|
|
71
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/actions/runners"]["parameters"];
|
|
72
|
-
response: Endpoints["GET /enterprises/{enterprise}/actions/runners"]["response"] & {
|
|
73
|
-
data: Endpoints["GET /enterprises/{enterprise}/actions/runners"]["response"]["data"]["runners"];
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* @see https://docs.github.com/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise
|
|
78
|
-
*/
|
|
79
|
-
"GET /enterprises/{enterprise}/audit-log": {
|
|
80
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/audit-log"]["parameters"];
|
|
81
|
-
response: Endpoints["GET /enterprises/{enterprise}/audit-log"]["response"];
|
|
82
|
-
};
|
|
83
|
-
/**
|
|
84
|
-
* @see https://docs.github.com/rest/reference/secret-scanning#list-secret-scanning-alerts-for-an-enterprise
|
|
85
|
-
*/
|
|
86
|
-
"GET /enterprises/{enterprise}/secret-scanning/alerts": {
|
|
87
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/secret-scanning/alerts"]["parameters"];
|
|
88
|
-
response: Endpoints["GET /enterprises/{enterprise}/secret-scanning/alerts"]["response"];
|
|
89
|
-
};
|
|
90
|
-
/**
|
|
91
|
-
* @see https://docs.github.com/rest/reference/billing#export-advanced-security-active-committers-data-for-enterprise
|
|
92
|
-
*/
|
|
93
|
-
"GET /enterprises/{enterprise}/settings/billing/advanced-security": {
|
|
94
|
-
parameters: Endpoints["GET /enterprises/{enterprise}/settings/billing/advanced-security"]["parameters"];
|
|
95
|
-
response: Endpoints["GET /enterprises/{enterprise}/settings/billing/advanced-security"]["response"] & {
|
|
96
|
-
data: Endpoints["GET /enterprises/{enterprise}/settings/billing/advanced-security"]["response"]["data"]["repositories"];
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
/**
|
|
100
|
-
* @see https://docs.github.com/rest/reference/activity#list-public-events
|
|
101
|
-
*/
|
|
102
|
-
"GET /events": {
|
|
103
|
-
parameters: Endpoints["GET /events"]["parameters"];
|
|
104
|
-
response: Endpoints["GET /events"]["response"];
|
|
105
|
-
};
|
|
106
|
-
/**
|
|
107
|
-
* @see https://docs.github.com/rest/reference/gists#list-gists-for-the-authenticated-user
|
|
108
|
-
*/
|
|
109
|
-
"GET /gists": {
|
|
110
|
-
parameters: Endpoints["GET /gists"]["parameters"];
|
|
111
|
-
response: Endpoints["GET /gists"]["response"];
|
|
112
|
-
};
|
|
113
|
-
/**
|
|
114
|
-
* @see https://docs.github.com/rest/reference/gists#list-public-gists
|
|
115
|
-
*/
|
|
116
|
-
"GET /gists/public": {
|
|
117
|
-
parameters: Endpoints["GET /gists/public"]["parameters"];
|
|
118
|
-
response: Endpoints["GET /gists/public"]["response"];
|
|
119
|
-
};
|
|
120
|
-
/**
|
|
121
|
-
* @see https://docs.github.com/rest/reference/gists#list-starred-gists
|
|
122
|
-
*/
|
|
123
|
-
"GET /gists/starred": {
|
|
124
|
-
parameters: Endpoints["GET /gists/starred"]["parameters"];
|
|
125
|
-
response: Endpoints["GET /gists/starred"]["response"];
|
|
126
|
-
};
|
|
127
|
-
/**
|
|
128
|
-
* @see https://docs.github.com/rest/reference/gists#list-gist-comments
|
|
129
|
-
*/
|
|
130
|
-
"GET /gists/{gist_id}/comments": {
|
|
131
|
-
parameters: Endpoints["GET /gists/{gist_id}/comments"]["parameters"];
|
|
132
|
-
response: Endpoints["GET /gists/{gist_id}/comments"]["response"];
|
|
133
|
-
};
|
|
134
|
-
/**
|
|
135
|
-
* @see https://docs.github.com/rest/reference/gists#list-gist-commits
|
|
136
|
-
*/
|
|
137
|
-
"GET /gists/{gist_id}/commits": {
|
|
138
|
-
parameters: Endpoints["GET /gists/{gist_id}/commits"]["parameters"];
|
|
139
|
-
response: Endpoints["GET /gists/{gist_id}/commits"]["response"];
|
|
140
|
-
};
|
|
141
|
-
/**
|
|
142
|
-
* @see https://docs.github.com/rest/reference/gists#list-gist-forks
|
|
143
|
-
*/
|
|
144
|
-
"GET /gists/{gist_id}/forks": {
|
|
145
|
-
parameters: Endpoints["GET /gists/{gist_id}/forks"]["parameters"];
|
|
146
|
-
response: Endpoints["GET /gists/{gist_id}/forks"]["response"];
|
|
147
|
-
};
|
|
148
|
-
/**
|
|
149
|
-
* @see https://docs.github.com/rest/reference/apps#list-repositories-accessible-to-the-app-installation
|
|
150
|
-
*/
|
|
151
|
-
"GET /installation/repositories": {
|
|
152
|
-
parameters: Endpoints["GET /installation/repositories"]["parameters"];
|
|
153
|
-
response: Endpoints["GET /installation/repositories"]["response"] & {
|
|
154
|
-
data: Endpoints["GET /installation/repositories"]["response"]["data"]["repositories"];
|
|
155
|
-
};
|
|
156
|
-
};
|
|
157
|
-
/**
|
|
158
|
-
* @see https://docs.github.com/rest/reference/issues#list-issues-assigned-to-the-authenticated-user
|
|
159
|
-
*/
|
|
160
|
-
"GET /issues": {
|
|
161
|
-
parameters: Endpoints["GET /issues"]["parameters"];
|
|
162
|
-
response: Endpoints["GET /issues"]["response"];
|
|
163
|
-
};
|
|
164
|
-
/**
|
|
165
|
-
* @see https://docs.github.com/rest/reference/licenses#get-all-commonly-used-licenses
|
|
166
|
-
*/
|
|
167
|
-
"GET /licenses": {
|
|
168
|
-
parameters: Endpoints["GET /licenses"]["parameters"];
|
|
169
|
-
response: Endpoints["GET /licenses"]["response"];
|
|
170
|
-
};
|
|
171
|
-
/**
|
|
172
|
-
* @see https://docs.github.com/rest/reference/apps#list-plans
|
|
173
|
-
*/
|
|
174
|
-
"GET /marketplace_listing/plans": {
|
|
175
|
-
parameters: Endpoints["GET /marketplace_listing/plans"]["parameters"];
|
|
176
|
-
response: Endpoints["GET /marketplace_listing/plans"]["response"];
|
|
177
|
-
};
|
|
178
|
-
/**
|
|
179
|
-
* @see https://docs.github.com/rest/reference/apps#list-accounts-for-a-plan
|
|
180
|
-
*/
|
|
181
|
-
"GET /marketplace_listing/plans/{plan_id}/accounts": {
|
|
182
|
-
parameters: Endpoints["GET /marketplace_listing/plans/{plan_id}/accounts"]["parameters"];
|
|
183
|
-
response: Endpoints["GET /marketplace_listing/plans/{plan_id}/accounts"]["response"];
|
|
184
|
-
};
|
|
185
|
-
/**
|
|
186
|
-
* @see https://docs.github.com/rest/reference/apps#list-plans-stubbed
|
|
187
|
-
*/
|
|
188
|
-
"GET /marketplace_listing/stubbed/plans": {
|
|
189
|
-
parameters: Endpoints["GET /marketplace_listing/stubbed/plans"]["parameters"];
|
|
190
|
-
response: Endpoints["GET /marketplace_listing/stubbed/plans"]["response"];
|
|
191
|
-
};
|
|
192
|
-
/**
|
|
193
|
-
* @see https://docs.github.com/rest/reference/apps#list-accounts-for-a-plan-stubbed
|
|
194
|
-
*/
|
|
195
|
-
"GET /marketplace_listing/stubbed/plans/{plan_id}/accounts": {
|
|
196
|
-
parameters: Endpoints["GET /marketplace_listing/stubbed/plans/{plan_id}/accounts"]["parameters"];
|
|
197
|
-
response: Endpoints["GET /marketplace_listing/stubbed/plans/{plan_id}/accounts"]["response"];
|
|
198
|
-
};
|
|
199
|
-
/**
|
|
200
|
-
* @see https://docs.github.com/rest/reference/activity#list-public-events-for-a-network-of-repositories
|
|
201
|
-
*/
|
|
202
|
-
"GET /networks/{owner}/{repo}/events": {
|
|
203
|
-
parameters: Endpoints["GET /networks/{owner}/{repo}/events"]["parameters"];
|
|
204
|
-
response: Endpoints["GET /networks/{owner}/{repo}/events"]["response"];
|
|
205
|
-
};
|
|
206
|
-
/**
|
|
207
|
-
* @see https://docs.github.com/rest/reference/activity#list-notifications-for-the-authenticated-user
|
|
208
|
-
*/
|
|
209
|
-
"GET /notifications": {
|
|
210
|
-
parameters: Endpoints["GET /notifications"]["parameters"];
|
|
211
|
-
response: Endpoints["GET /notifications"]["response"];
|
|
212
|
-
};
|
|
213
|
-
/**
|
|
214
|
-
* @see https://docs.github.com/rest/reference/orgs#list-organizations
|
|
215
|
-
*/
|
|
216
|
-
"GET /organizations": {
|
|
217
|
-
parameters: Endpoints["GET /organizations"]["parameters"];
|
|
218
|
-
response: Endpoints["GET /organizations"]["response"];
|
|
219
|
-
};
|
|
220
|
-
/**
|
|
221
|
-
* @see https://docs.github.com/rest/reference/actions#list-repositories-with-github-actions-cache-usage-for-an-organization
|
|
222
|
-
*/
|
|
223
|
-
"GET /orgs/{org}/actions/cache/usage-by-repository": {
|
|
224
|
-
parameters: Endpoints["GET /orgs/{org}/actions/cache/usage-by-repository"]["parameters"];
|
|
225
|
-
response: Endpoints["GET /orgs/{org}/actions/cache/usage-by-repository"]["response"] & {
|
|
226
|
-
data: Endpoints["GET /orgs/{org}/actions/cache/usage-by-repository"]["response"]["data"]["repository_cache_usages"];
|
|
227
|
-
};
|
|
228
|
-
};
|
|
229
|
-
/**
|
|
230
|
-
* @see https://docs.github.com/rest/reference/actions#list-selected-repositories-enabled-for-github-actions-in-an-organization
|
|
231
|
-
*/
|
|
232
|
-
"GET /orgs/{org}/actions/permissions/repositories": {
|
|
233
|
-
parameters: Endpoints["GET /orgs/{org}/actions/permissions/repositories"]["parameters"];
|
|
234
|
-
response: Endpoints["GET /orgs/{org}/actions/permissions/repositories"]["response"] & {
|
|
235
|
-
data: Endpoints["GET /orgs/{org}/actions/permissions/repositories"]["response"]["data"]["repositories"];
|
|
236
|
-
};
|
|
237
|
-
};
|
|
238
|
-
/**
|
|
239
|
-
* @see https://docs.github.com/rest/reference/actions#list-self-hosted-runner-groups-for-an-organization
|
|
240
|
-
*/
|
|
241
|
-
"GET /orgs/{org}/actions/runner-groups": {
|
|
242
|
-
parameters: Endpoints["GET /orgs/{org}/actions/runner-groups"]["parameters"];
|
|
243
|
-
response: Endpoints["GET /orgs/{org}/actions/runner-groups"]["response"] & {
|
|
244
|
-
data: Endpoints["GET /orgs/{org}/actions/runner-groups"]["response"]["data"]["runner_groups"];
|
|
245
|
-
};
|
|
246
|
-
};
|
|
247
|
-
/**
|
|
248
|
-
* @see https://docs.github.com/rest/reference/actions#list-repository-access-to-a-self-hosted-runner-group-in-an-organization
|
|
249
|
-
*/
|
|
250
|
-
"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories": {
|
|
251
|
-
parameters: Endpoints["GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories"]["parameters"];
|
|
252
|
-
response: Endpoints["GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories"]["response"] & {
|
|
253
|
-
data: Endpoints["GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories"]["response"]["data"]["repositories"];
|
|
254
|
-
};
|
|
255
|
-
};
|
|
256
|
-
/**
|
|
257
|
-
* @see https://docs.github.com/rest/reference/actions#list-self-hosted-runners-in-a-group-for-an-organization
|
|
258
|
-
*/
|
|
259
|
-
"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners": {
|
|
260
|
-
parameters: Endpoints["GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners"]["parameters"];
|
|
261
|
-
response: Endpoints["GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners"]["response"] & {
|
|
262
|
-
data: Endpoints["GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners"]["response"]["data"]["runners"];
|
|
263
|
-
};
|
|
264
|
-
};
|
|
265
|
-
/**
|
|
266
|
-
* @see https://docs.github.com/rest/reference/actions#list-self-hosted-runners-for-an-organization
|
|
267
|
-
*/
|
|
268
|
-
"GET /orgs/{org}/actions/runners": {
|
|
269
|
-
parameters: Endpoints["GET /orgs/{org}/actions/runners"]["parameters"];
|
|
270
|
-
response: Endpoints["GET /orgs/{org}/actions/runners"]["response"] & {
|
|
271
|
-
data: Endpoints["GET /orgs/{org}/actions/runners"]["response"]["data"]["runners"];
|
|
272
|
-
};
|
|
273
|
-
};
|
|
274
|
-
/**
|
|
275
|
-
* @see https://docs.github.com/rest/reference/actions#list-organization-secrets
|
|
276
|
-
*/
|
|
277
|
-
"GET /orgs/{org}/actions/secrets": {
|
|
278
|
-
parameters: Endpoints["GET /orgs/{org}/actions/secrets"]["parameters"];
|
|
279
|
-
response: Endpoints["GET /orgs/{org}/actions/secrets"]["response"] & {
|
|
280
|
-
data: Endpoints["GET /orgs/{org}/actions/secrets"]["response"]["data"]["secrets"];
|
|
281
|
-
};
|
|
282
|
-
};
|
|
283
|
-
/**
|
|
284
|
-
* @see https://docs.github.com/rest/reference/actions#list-selected-repositories-for-an-organization-secret
|
|
285
|
-
*/
|
|
286
|
-
"GET /orgs/{org}/actions/secrets/{secret_name}/repositories": {
|
|
287
|
-
parameters: Endpoints["GET /orgs/{org}/actions/secrets/{secret_name}/repositories"]["parameters"];
|
|
288
|
-
response: Endpoints["GET /orgs/{org}/actions/secrets/{secret_name}/repositories"]["response"] & {
|
|
289
|
-
data: Endpoints["GET /orgs/{org}/actions/secrets/{secret_name}/repositories"]["response"]["data"]["repositories"];
|
|
290
|
-
};
|
|
291
|
-
};
|
|
292
|
-
/**
|
|
293
|
-
* @see https://docs.github.com/rest/reference/orgs#get-audit-log
|
|
294
|
-
*/
|
|
295
|
-
"GET /orgs/{org}/audit-log": {
|
|
296
|
-
parameters: Endpoints["GET /orgs/{org}/audit-log"]["parameters"];
|
|
297
|
-
response: Endpoints["GET /orgs/{org}/audit-log"]["response"];
|
|
298
|
-
};
|
|
299
|
-
/**
|
|
300
|
-
* @see https://docs.github.com/rest/reference/orgs#list-users-blocked-by-an-organization
|
|
301
|
-
*/
|
|
302
|
-
"GET /orgs/{org}/blocks": {
|
|
303
|
-
parameters: Endpoints["GET /orgs/{org}/blocks"]["parameters"];
|
|
304
|
-
response: Endpoints["GET /orgs/{org}/blocks"]["response"];
|
|
305
|
-
};
|
|
306
|
-
/**
|
|
307
|
-
* @see https://docs.github.com/rest/reference/code-scanning#list-code-scanning-alerts-by-organization
|
|
308
|
-
*/
|
|
309
|
-
"GET /orgs/{org}/code-scanning/alerts": {
|
|
310
|
-
parameters: Endpoints["GET /orgs/{org}/code-scanning/alerts"]["parameters"];
|
|
311
|
-
response: Endpoints["GET /orgs/{org}/code-scanning/alerts"]["response"];
|
|
312
|
-
};
|
|
313
|
-
/**
|
|
314
|
-
* @see https://docs.github.com/rest/reference/codespaces#list-in-organization
|
|
315
|
-
*/
|
|
316
|
-
"GET /orgs/{org}/codespaces": {
|
|
317
|
-
parameters: Endpoints["GET /orgs/{org}/codespaces"]["parameters"];
|
|
318
|
-
response: Endpoints["GET /orgs/{org}/codespaces"]["response"] & {
|
|
319
|
-
data: Endpoints["GET /orgs/{org}/codespaces"]["response"]["data"]["codespaces"];
|
|
320
|
-
};
|
|
321
|
-
};
|
|
322
|
-
/**
|
|
323
|
-
* @see https://docs.github.com/rest/reference/orgs#list-saml-sso-authorizations-for-an-organization
|
|
324
|
-
*/
|
|
325
|
-
"GET /orgs/{org}/credential-authorizations": {
|
|
326
|
-
parameters: Endpoints["GET /orgs/{org}/credential-authorizations"]["parameters"];
|
|
327
|
-
response: Endpoints["GET /orgs/{org}/credential-authorizations"]["response"];
|
|
328
|
-
};
|
|
329
|
-
/**
|
|
330
|
-
* @see https://docs.github.com/rest/reference/dependabot#list-organization-secrets
|
|
331
|
-
*/
|
|
332
|
-
"GET /orgs/{org}/dependabot/secrets": {
|
|
333
|
-
parameters: Endpoints["GET /orgs/{org}/dependabot/secrets"]["parameters"];
|
|
334
|
-
response: Endpoints["GET /orgs/{org}/dependabot/secrets"]["response"] & {
|
|
335
|
-
data: Endpoints["GET /orgs/{org}/dependabot/secrets"]["response"]["data"]["secrets"];
|
|
336
|
-
};
|
|
337
|
-
};
|
|
338
|
-
/**
|
|
339
|
-
* @see https://docs.github.com/rest/reference/dependabot#list-selected-repositories-for-an-organization-secret
|
|
340
|
-
*/
|
|
341
|
-
"GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories": {
|
|
342
|
-
parameters: Endpoints["GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories"]["parameters"];
|
|
343
|
-
response: Endpoints["GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories"]["response"] & {
|
|
344
|
-
data: Endpoints["GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories"]["response"]["data"]["repositories"];
|
|
345
|
-
};
|
|
346
|
-
};
|
|
347
|
-
/**
|
|
348
|
-
* @see https://docs.github.com/rest/reference/activity#list-public-organization-events
|
|
349
|
-
*/
|
|
350
|
-
"GET /orgs/{org}/events": {
|
|
351
|
-
parameters: Endpoints["GET /orgs/{org}/events"]["parameters"];
|
|
352
|
-
response: Endpoints["GET /orgs/{org}/events"]["response"];
|
|
353
|
-
};
|
|
354
|
-
/**
|
|
355
|
-
* @see https://docs.github.com/rest/reference/teams#list-external-idp-groups-for-an-organization
|
|
356
|
-
*/
|
|
357
|
-
"GET /orgs/{org}/external-groups": {
|
|
358
|
-
parameters: Endpoints["GET /orgs/{org}/external-groups"]["parameters"];
|
|
359
|
-
response: Endpoints["GET /orgs/{org}/external-groups"]["response"] & {
|
|
360
|
-
data: Endpoints["GET /orgs/{org}/external-groups"]["response"]["data"]["groups"];
|
|
361
|
-
};
|
|
362
|
-
};
|
|
363
|
-
/**
|
|
364
|
-
* @see https://docs.github.com/rest/reference/orgs#list-failed-organization-invitations
|
|
365
|
-
*/
|
|
366
|
-
"GET /orgs/{org}/failed_invitations": {
|
|
367
|
-
parameters: Endpoints["GET /orgs/{org}/failed_invitations"]["parameters"];
|
|
368
|
-
response: Endpoints["GET /orgs/{org}/failed_invitations"]["response"];
|
|
369
|
-
};
|
|
370
|
-
/**
|
|
371
|
-
* @see https://docs.github.com/rest/reference/orgs#list-organization-webhooks
|
|
372
|
-
*/
|
|
373
|
-
"GET /orgs/{org}/hooks": {
|
|
374
|
-
parameters: Endpoints["GET /orgs/{org}/hooks"]["parameters"];
|
|
375
|
-
response: Endpoints["GET /orgs/{org}/hooks"]["response"];
|
|
376
|
-
};
|
|
377
|
-
/**
|
|
378
|
-
* @see https://docs.github.com/rest/reference/orgs#list-deliveries-for-an-organization-webhook
|
|
379
|
-
*/
|
|
380
|
-
"GET /orgs/{org}/hooks/{hook_id}/deliveries": {
|
|
381
|
-
parameters: Endpoints["GET /orgs/{org}/hooks/{hook_id}/deliveries"]["parameters"];
|
|
382
|
-
response: Endpoints["GET /orgs/{org}/hooks/{hook_id}/deliveries"]["response"];
|
|
383
|
-
};
|
|
384
|
-
/**
|
|
385
|
-
* @see https://docs.github.com/rest/reference/orgs#list-app-installations-for-an-organization
|
|
386
|
-
*/
|
|
387
|
-
"GET /orgs/{org}/installations": {
|
|
388
|
-
parameters: Endpoints["GET /orgs/{org}/installations"]["parameters"];
|
|
389
|
-
response: Endpoints["GET /orgs/{org}/installations"]["response"] & {
|
|
390
|
-
data: Endpoints["GET /orgs/{org}/installations"]["response"]["data"]["installations"];
|
|
391
|
-
};
|
|
392
|
-
};
|
|
393
|
-
/**
|
|
394
|
-
* @see https://docs.github.com/rest/reference/orgs#list-pending-organization-invitations
|
|
395
|
-
*/
|
|
396
|
-
"GET /orgs/{org}/invitations": {
|
|
397
|
-
parameters: Endpoints["GET /orgs/{org}/invitations"]["parameters"];
|
|
398
|
-
response: Endpoints["GET /orgs/{org}/invitations"]["response"];
|
|
399
|
-
};
|
|
400
|
-
/**
|
|
401
|
-
* @see https://docs.github.com/rest/reference/orgs#list-organization-invitation-teams
|
|
402
|
-
*/
|
|
403
|
-
"GET /orgs/{org}/invitations/{invitation_id}/teams": {
|
|
404
|
-
parameters: Endpoints["GET /orgs/{org}/invitations/{invitation_id}/teams"]["parameters"];
|
|
405
|
-
response: Endpoints["GET /orgs/{org}/invitations/{invitation_id}/teams"]["response"];
|
|
406
|
-
};
|
|
407
|
-
/**
|
|
408
|
-
* @see https://docs.github.com/rest/reference/issues#list-organization-issues-assigned-to-the-authenticated-user
|
|
409
|
-
*/
|
|
410
|
-
"GET /orgs/{org}/issues": {
|
|
411
|
-
parameters: Endpoints["GET /orgs/{org}/issues"]["parameters"];
|
|
412
|
-
response: Endpoints["GET /orgs/{org}/issues"]["response"];
|
|
413
|
-
};
|
|
414
|
-
/**
|
|
415
|
-
* @see https://docs.github.com/rest/reference/orgs#list-organization-members
|
|
416
|
-
*/
|
|
417
|
-
"GET /orgs/{org}/members": {
|
|
418
|
-
parameters: Endpoints["GET /orgs/{org}/members"]["parameters"];
|
|
419
|
-
response: Endpoints["GET /orgs/{org}/members"]["response"];
|
|
420
|
-
};
|
|
421
|
-
/**
|
|
422
|
-
* @see https://docs.github.com/rest/reference/migrations#list-organization-migrations
|
|
423
|
-
*/
|
|
424
|
-
"GET /orgs/{org}/migrations": {
|
|
425
|
-
parameters: Endpoints["GET /orgs/{org}/migrations"]["parameters"];
|
|
426
|
-
response: Endpoints["GET /orgs/{org}/migrations"]["response"];
|
|
427
|
-
};
|
|
428
|
-
/**
|
|
429
|
-
* @see https://docs.github.com/rest/reference/migrations#list-repositories-in-an-organization-migration
|
|
430
|
-
*/
|
|
431
|
-
"GET /orgs/{org}/migrations/{migration_id}/repositories": {
|
|
432
|
-
parameters: Endpoints["GET /orgs/{org}/migrations/{migration_id}/repositories"]["parameters"];
|
|
433
|
-
response: Endpoints["GET /orgs/{org}/migrations/{migration_id}/repositories"]["response"];
|
|
434
|
-
};
|
|
435
|
-
/**
|
|
436
|
-
* @see https://docs.github.com/rest/reference/orgs#list-outside-collaborators-for-an-organization
|
|
437
|
-
*/
|
|
438
|
-
"GET /orgs/{org}/outside_collaborators": {
|
|
439
|
-
parameters: Endpoints["GET /orgs/{org}/outside_collaborators"]["parameters"];
|
|
440
|
-
response: Endpoints["GET /orgs/{org}/outside_collaborators"]["response"];
|
|
441
|
-
};
|
|
442
|
-
/**
|
|
443
|
-
* @see https://docs.github.com/rest/reference/packages#list-packages-for-an-organization
|
|
444
|
-
*/
|
|
445
|
-
"GET /orgs/{org}/packages": {
|
|
446
|
-
parameters: Endpoints["GET /orgs/{org}/packages"]["parameters"];
|
|
447
|
-
response: Endpoints["GET /orgs/{org}/packages"]["response"];
|
|
448
|
-
};
|
|
449
|
-
/**
|
|
450
|
-
* @see https://docs.github.com/rest/reference/packages#get-all-package-versions-for-a-package-owned-by-an-organization
|
|
451
|
-
*/
|
|
452
|
-
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions": {
|
|
453
|
-
parameters: Endpoints["GET /orgs/{org}/packages/{package_type}/{package_name}/versions"]["parameters"];
|
|
454
|
-
response: Endpoints["GET /orgs/{org}/packages/{package_type}/{package_name}/versions"]["response"];
|
|
455
|
-
};
|
|
456
|
-
/**
|
|
457
|
-
* @see https://docs.github.com/rest/reference/projects#list-organization-projects
|
|
458
|
-
*/
|
|
459
|
-
"GET /orgs/{org}/projects": {
|
|
460
|
-
parameters: Endpoints["GET /orgs/{org}/projects"]["parameters"];
|
|
461
|
-
response: Endpoints["GET /orgs/{org}/projects"]["response"];
|
|
462
|
-
};
|
|
463
|
-
/**
|
|
464
|
-
* @see https://docs.github.com/rest/reference/orgs#list-public-organization-members
|
|
465
|
-
*/
|
|
466
|
-
"GET /orgs/{org}/public_members": {
|
|
467
|
-
parameters: Endpoints["GET /orgs/{org}/public_members"]["parameters"];
|
|
468
|
-
response: Endpoints["GET /orgs/{org}/public_members"]["response"];
|
|
469
|
-
};
|
|
470
|
-
/**
|
|
471
|
-
* @see https://docs.github.com/rest/reference/repos#list-organization-repositories
|
|
472
|
-
*/
|
|
473
|
-
"GET /orgs/{org}/repos": {
|
|
474
|
-
parameters: Endpoints["GET /orgs/{org}/repos"]["parameters"];
|
|
475
|
-
response: Endpoints["GET /orgs/{org}/repos"]["response"];
|
|
476
|
-
};
|
|
477
|
-
/**
|
|
478
|
-
* @see https://docs.github.com/rest/reference/secret-scanning#list-secret-scanning-alerts-for-an-organization
|
|
479
|
-
*/
|
|
480
|
-
"GET /orgs/{org}/secret-scanning/alerts": {
|
|
481
|
-
parameters: Endpoints["GET /orgs/{org}/secret-scanning/alerts"]["parameters"];
|
|
482
|
-
response: Endpoints["GET /orgs/{org}/secret-scanning/alerts"]["response"];
|
|
483
|
-
};
|
|
484
|
-
/**
|
|
485
|
-
* @see https://docs.github.com/rest/reference/billing#get-github-advanced-security-active-committers-for-an-organization
|
|
486
|
-
*/
|
|
487
|
-
"GET /orgs/{org}/settings/billing/advanced-security": {
|
|
488
|
-
parameters: Endpoints["GET /orgs/{org}/settings/billing/advanced-security"]["parameters"];
|
|
489
|
-
response: Endpoints["GET /orgs/{org}/settings/billing/advanced-security"]["response"] & {
|
|
490
|
-
data: Endpoints["GET /orgs/{org}/settings/billing/advanced-security"]["response"]["data"]["repositories"];
|
|
491
|
-
};
|
|
492
|
-
};
|
|
493
|
-
/**
|
|
494
|
-
* @see https://docs.github.com/rest/reference/teams#list-idp-groups-for-an-organization
|
|
495
|
-
*/
|
|
496
|
-
"GET /orgs/{org}/team-sync/groups": {
|
|
497
|
-
parameters: Endpoints["GET /orgs/{org}/team-sync/groups"]["parameters"];
|
|
498
|
-
response: Endpoints["GET /orgs/{org}/team-sync/groups"]["response"] & {
|
|
499
|
-
data: Endpoints["GET /orgs/{org}/team-sync/groups"]["response"]["data"]["groups"];
|
|
500
|
-
};
|
|
501
|
-
};
|
|
502
|
-
/**
|
|
503
|
-
* @see https://docs.github.com/rest/reference/teams#list-teams
|
|
504
|
-
*/
|
|
505
|
-
"GET /orgs/{org}/teams": {
|
|
506
|
-
parameters: Endpoints["GET /orgs/{org}/teams"]["parameters"];
|
|
507
|
-
response: Endpoints["GET /orgs/{org}/teams"]["response"];
|
|
508
|
-
};
|
|
509
|
-
/**
|
|
510
|
-
* @see https://docs.github.com/rest/reference/teams#list-discussions
|
|
511
|
-
*/
|
|
512
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions": {
|
|
513
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions"]["parameters"];
|
|
514
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions"]["response"];
|
|
515
|
-
};
|
|
516
|
-
/**
|
|
517
|
-
* @see https://docs.github.com/rest/reference/teams#list-discussion-comments
|
|
518
|
-
*/
|
|
519
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments": {
|
|
520
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments"]["parameters"];
|
|
521
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments"]["response"];
|
|
522
|
-
};
|
|
523
|
-
/**
|
|
524
|
-
* @see https://docs.github.com/rest/reference/reactions#list-reactions-for-a-team-discussion-comment
|
|
525
|
-
*/
|
|
526
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions": {
|
|
527
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions"]["parameters"];
|
|
528
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions"]["response"];
|
|
529
|
-
};
|
|
530
|
-
/**
|
|
531
|
-
* @see https://docs.github.com/rest/reference/reactions#list-reactions-for-a-team-discussion
|
|
532
|
-
*/
|
|
533
|
-
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions": {
|
|
534
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions"]["parameters"];
|
|
535
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions"]["response"];
|
|
536
|
-
};
|
|
537
|
-
/**
|
|
538
|
-
* @see https://docs.github.com/rest/reference/teams#list-pending-team-invitations
|
|
539
|
-
*/
|
|
540
|
-
"GET /orgs/{org}/teams/{team_slug}/invitations": {
|
|
541
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/invitations"]["parameters"];
|
|
542
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/invitations"]["response"];
|
|
543
|
-
};
|
|
544
|
-
/**
|
|
545
|
-
* @see https://docs.github.com/rest/reference/teams#list-team-members
|
|
546
|
-
*/
|
|
547
|
-
"GET /orgs/{org}/teams/{team_slug}/members": {
|
|
548
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/members"]["parameters"];
|
|
549
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/members"]["response"];
|
|
550
|
-
};
|
|
551
|
-
/**
|
|
552
|
-
* @see https://docs.github.com/rest/reference/teams#list-team-projects
|
|
553
|
-
*/
|
|
554
|
-
"GET /orgs/{org}/teams/{team_slug}/projects": {
|
|
555
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/projects"]["parameters"];
|
|
556
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/projects"]["response"];
|
|
557
|
-
};
|
|
558
|
-
/**
|
|
559
|
-
* @see https://docs.github.com/rest/reference/teams#list-team-repositories
|
|
560
|
-
*/
|
|
561
|
-
"GET /orgs/{org}/teams/{team_slug}/repos": {
|
|
562
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/repos"]["parameters"];
|
|
563
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/repos"]["response"];
|
|
564
|
-
};
|
|
565
|
-
/**
|
|
566
|
-
* @see https://docs.github.com/rest/reference/teams#list-child-teams
|
|
567
|
-
*/
|
|
568
|
-
"GET /orgs/{org}/teams/{team_slug}/teams": {
|
|
569
|
-
parameters: Endpoints["GET /orgs/{org}/teams/{team_slug}/teams"]["parameters"];
|
|
570
|
-
response: Endpoints["GET /orgs/{org}/teams/{team_slug}/teams"]["response"];
|
|
571
|
-
};
|
|
572
|
-
/**
|
|
573
|
-
* @see https://docs.github.com/rest/reference/projects#list-project-cards
|
|
574
|
-
*/
|
|
575
|
-
"GET /projects/columns/{column_id}/cards": {
|
|
576
|
-
parameters: Endpoints["GET /projects/columns/{column_id}/cards"]["parameters"];
|
|
577
|
-
response: Endpoints["GET /projects/columns/{column_id}/cards"]["response"];
|
|
578
|
-
};
|
|
579
|
-
/**
|
|
580
|
-
* @see https://docs.github.com/rest/reference/projects#list-project-collaborators
|
|
581
|
-
*/
|
|
582
|
-
"GET /projects/{project_id}/collaborators": {
|
|
583
|
-
parameters: Endpoints["GET /projects/{project_id}/collaborators"]["parameters"];
|
|
584
|
-
response: Endpoints["GET /projects/{project_id}/collaborators"]["response"];
|
|
585
|
-
};
|
|
586
|
-
/**
|
|
587
|
-
* @see https://docs.github.com/rest/reference/projects#list-project-columns
|
|
588
|
-
*/
|
|
589
|
-
"GET /projects/{project_id}/columns": {
|
|
590
|
-
parameters: Endpoints["GET /projects/{project_id}/columns"]["parameters"];
|
|
591
|
-
response: Endpoints["GET /projects/{project_id}/columns"]["response"];
|
|
592
|
-
};
|
|
593
|
-
/**
|
|
594
|
-
* @see https://docs.github.com/rest/reference/actions#list-artifacts-for-a-repository
|
|
595
|
-
*/
|
|
596
|
-
"GET /repos/{owner}/{repo}/actions/artifacts": {
|
|
597
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/artifacts"]["parameters"];
|
|
598
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/artifacts"]["response"] & {
|
|
599
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/artifacts"]["response"]["data"]["artifacts"];
|
|
600
|
-
};
|
|
601
|
-
};
|
|
602
|
-
/**
|
|
603
|
-
* @see https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository
|
|
604
|
-
*/
|
|
605
|
-
"GET /repos/{owner}/{repo}/actions/caches": {
|
|
606
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/caches"]["parameters"];
|
|
607
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/caches"]["response"] & {
|
|
608
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/caches"]["response"]["data"]["actions_caches"];
|
|
609
|
-
};
|
|
610
|
-
};
|
|
611
|
-
/**
|
|
612
|
-
* @see https://docs.github.com/rest/reference/actions#list-self-hosted-runners-for-a-repository
|
|
613
|
-
*/
|
|
614
|
-
"GET /repos/{owner}/{repo}/actions/runners": {
|
|
615
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/runners"]["parameters"];
|
|
616
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/runners"]["response"] & {
|
|
617
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/runners"]["response"]["data"]["runners"];
|
|
618
|
-
};
|
|
619
|
-
};
|
|
620
|
-
/**
|
|
621
|
-
* @see https://docs.github.com/rest/reference/actions#list-workflow-runs-for-a-repository
|
|
622
|
-
*/
|
|
623
|
-
"GET /repos/{owner}/{repo}/actions/runs": {
|
|
624
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/runs"]["parameters"];
|
|
625
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/runs"]["response"] & {
|
|
626
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/runs"]["response"]["data"]["workflow_runs"];
|
|
627
|
-
};
|
|
628
|
-
};
|
|
629
|
-
/**
|
|
630
|
-
* @see https://docs.github.com/rest/reference/actions#list-workflow-run-artifacts
|
|
631
|
-
*/
|
|
632
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts": {
|
|
633
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts"]["parameters"];
|
|
634
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts"]["response"] & {
|
|
635
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts"]["response"]["data"]["artifacts"];
|
|
636
|
-
};
|
|
637
|
-
};
|
|
638
|
-
/**
|
|
639
|
-
* @see https://docs.github.com/rest/reference/actions#list-jobs-for-a-workflow-run-attempt
|
|
640
|
-
*/
|
|
641
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs": {
|
|
642
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs"]["parameters"];
|
|
643
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs"]["response"] & {
|
|
644
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs"]["response"]["data"]["jobs"];
|
|
645
|
-
};
|
|
646
|
-
};
|
|
647
|
-
/**
|
|
648
|
-
* @see https://docs.github.com/rest/reference/actions#list-jobs-for-a-workflow-run
|
|
649
|
-
*/
|
|
650
|
-
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs": {
|
|
651
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs"]["parameters"];
|
|
652
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs"]["response"] & {
|
|
653
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs"]["response"]["data"]["jobs"];
|
|
654
|
-
};
|
|
655
|
-
};
|
|
656
|
-
/**
|
|
657
|
-
* @see https://docs.github.com/rest/reference/actions#list-repository-secrets
|
|
658
|
-
*/
|
|
659
|
-
"GET /repos/{owner}/{repo}/actions/secrets": {
|
|
660
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/secrets"]["parameters"];
|
|
661
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/secrets"]["response"] & {
|
|
662
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/secrets"]["response"]["data"]["secrets"];
|
|
663
|
-
};
|
|
664
|
-
};
|
|
665
|
-
/**
|
|
666
|
-
* @see https://docs.github.com/rest/reference/actions#list-repository-workflows
|
|
667
|
-
*/
|
|
668
|
-
"GET /repos/{owner}/{repo}/actions/workflows": {
|
|
669
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/workflows"]["parameters"];
|
|
670
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/workflows"]["response"] & {
|
|
671
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/workflows"]["response"]["data"]["workflows"];
|
|
672
|
-
};
|
|
673
|
-
};
|
|
674
|
-
/**
|
|
675
|
-
* @see https://docs.github.com/rest/reference/actions#list-workflow-runs
|
|
676
|
-
*/
|
|
677
|
-
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": {
|
|
678
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs"]["parameters"];
|
|
679
|
-
response: Endpoints["GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs"]["response"] & {
|
|
680
|
-
data: Endpoints["GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs"]["response"]["data"]["workflow_runs"];
|
|
681
|
-
};
|
|
682
|
-
};
|
|
683
|
-
/**
|
|
684
|
-
* @see https://docs.github.com/rest/reference/issues#list-assignees
|
|
685
|
-
*/
|
|
686
|
-
"GET /repos/{owner}/{repo}/assignees": {
|
|
687
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/assignees"]["parameters"];
|
|
688
|
-
response: Endpoints["GET /repos/{owner}/{repo}/assignees"]["response"];
|
|
689
|
-
};
|
|
690
|
-
/**
|
|
691
|
-
* @see https://docs.github.com/rest/reference/repos#list-branches
|
|
692
|
-
*/
|
|
693
|
-
"GET /repos/{owner}/{repo}/branches": {
|
|
694
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/branches"]["parameters"];
|
|
695
|
-
response: Endpoints["GET /repos/{owner}/{repo}/branches"]["response"];
|
|
696
|
-
};
|
|
697
|
-
/**
|
|
698
|
-
* @see https://docs.github.com/rest/reference/checks#list-check-run-annotations
|
|
699
|
-
*/
|
|
700
|
-
"GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations": {
|
|
701
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations"]["parameters"];
|
|
702
|
-
response: Endpoints["GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations"]["response"];
|
|
703
|
-
};
|
|
704
|
-
/**
|
|
705
|
-
* @see https://docs.github.com/rest/reference/checks#list-check-runs-in-a-check-suite
|
|
706
|
-
*/
|
|
707
|
-
"GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs": {
|
|
708
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs"]["parameters"];
|
|
709
|
-
response: Endpoints["GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs"]["response"] & {
|
|
710
|
-
data: Endpoints["GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs"]["response"]["data"]["check_runs"];
|
|
711
|
-
};
|
|
712
|
-
};
|
|
713
|
-
/**
|
|
714
|
-
* @see https://docs.github.com/rest/reference/code-scanning#list-code-scanning-alerts-for-a-repository
|
|
715
|
-
*/
|
|
716
|
-
"GET /repos/{owner}/{repo}/code-scanning/alerts": {
|
|
717
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/code-scanning/alerts"]["parameters"];
|
|
718
|
-
response: Endpoints["GET /repos/{owner}/{repo}/code-scanning/alerts"]["response"];
|
|
719
|
-
};
|
|
720
|
-
/**
|
|
721
|
-
* @see https://docs.github.com/rest/reference/code-scanning#list-instances-of-a-code-scanning-alert
|
|
722
|
-
*/
|
|
723
|
-
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances": {
|
|
724
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances"]["parameters"];
|
|
725
|
-
response: Endpoints["GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances"]["response"];
|
|
726
|
-
};
|
|
727
|
-
/**
|
|
728
|
-
* @see https://docs.github.com/rest/reference/code-scanning#list-code-scanning-analyses-for-a-repository
|
|
729
|
-
*/
|
|
730
|
-
"GET /repos/{owner}/{repo}/code-scanning/analyses": {
|
|
731
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/code-scanning/analyses"]["parameters"];
|
|
732
|
-
response: Endpoints["GET /repos/{owner}/{repo}/code-scanning/analyses"]["response"];
|
|
733
|
-
};
|
|
734
|
-
/**
|
|
735
|
-
* @see https://docs.github.com/rest/reference/codespaces#list-codespaces-in-a-repository-for-the-authenticated-user
|
|
736
|
-
*/
|
|
737
|
-
"GET /repos/{owner}/{repo}/codespaces": {
|
|
738
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/codespaces"]["parameters"];
|
|
739
|
-
response: Endpoints["GET /repos/{owner}/{repo}/codespaces"]["response"] & {
|
|
740
|
-
data: Endpoints["GET /repos/{owner}/{repo}/codespaces"]["response"]["data"]["codespaces"];
|
|
741
|
-
};
|
|
742
|
-
};
|
|
743
|
-
/**
|
|
744
|
-
* @see https://docs.github.com/rest/reference/codespaces#list-devcontainers-in-a-repository-for-the-authenticated-user
|
|
745
|
-
*/
|
|
746
|
-
"GET /repos/{owner}/{repo}/codespaces/devcontainers": {
|
|
747
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/codespaces/devcontainers"]["parameters"];
|
|
748
|
-
response: Endpoints["GET /repos/{owner}/{repo}/codespaces/devcontainers"]["response"] & {
|
|
749
|
-
data: Endpoints["GET /repos/{owner}/{repo}/codespaces/devcontainers"]["response"]["data"]["devcontainers"];
|
|
750
|
-
};
|
|
751
|
-
};
|
|
752
|
-
/**
|
|
753
|
-
* @see https://docs.github.com/rest/reference/codespaces#list-repository-secrets
|
|
754
|
-
*/
|
|
755
|
-
"GET /repos/{owner}/{repo}/codespaces/secrets": {
|
|
756
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/codespaces/secrets"]["parameters"];
|
|
757
|
-
response: Endpoints["GET /repos/{owner}/{repo}/codespaces/secrets"]["response"] & {
|
|
758
|
-
data: Endpoints["GET /repos/{owner}/{repo}/codespaces/secrets"]["response"]["data"]["secrets"];
|
|
759
|
-
};
|
|
760
|
-
};
|
|
761
|
-
/**
|
|
762
|
-
* @see https://docs.github.com/rest/reference/repos#list-repository-collaborators
|
|
763
|
-
*/
|
|
764
|
-
"GET /repos/{owner}/{repo}/collaborators": {
|
|
765
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/collaborators"]["parameters"];
|
|
766
|
-
response: Endpoints["GET /repos/{owner}/{repo}/collaborators"]["response"];
|
|
767
|
-
};
|
|
768
|
-
/**
|
|
769
|
-
* @see https://docs.github.com/rest/reference/repos#list-commit-comments-for-a-repository
|
|
770
|
-
*/
|
|
771
|
-
"GET /repos/{owner}/{repo}/comments": {
|
|
772
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/comments"]["parameters"];
|
|
773
|
-
response: Endpoints["GET /repos/{owner}/{repo}/comments"]["response"];
|
|
774
|
-
};
|
|
775
|
-
/**
|
|
776
|
-
* @see https://docs.github.com/rest/reference/reactions#list-reactions-for-a-commit-comment
|
|
777
|
-
*/
|
|
778
|
-
"GET /repos/{owner}/{repo}/comments/{comment_id}/reactions": {
|
|
779
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/comments/{comment_id}/reactions"]["parameters"];
|
|
780
|
-
response: Endpoints["GET /repos/{owner}/{repo}/comments/{comment_id}/reactions"]["response"];
|
|
781
|
-
};
|
|
782
|
-
/**
|
|
783
|
-
* @see https://docs.github.com/rest/reference/repos#list-commits
|
|
784
|
-
*/
|
|
785
|
-
"GET /repos/{owner}/{repo}/commits": {
|
|
786
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/commits"]["parameters"];
|
|
787
|
-
response: Endpoints["GET /repos/{owner}/{repo}/commits"]["response"];
|
|
788
|
-
};
|
|
789
|
-
/**
|
|
790
|
-
* @see https://docs.github.com/rest/reference/repos#list-commit-comments
|
|
791
|
-
*/
|
|
792
|
-
"GET /repos/{owner}/{repo}/commits/{commit_sha}/comments": {
|
|
793
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/commits/{commit_sha}/comments"]["parameters"];
|
|
794
|
-
response: Endpoints["GET /repos/{owner}/{repo}/commits/{commit_sha}/comments"]["response"];
|
|
795
|
-
};
|
|
796
|
-
/**
|
|
797
|
-
* @see https://docs.github.com/rest/reference/repos#list-pull-requests-associated-with-a-commit
|
|
798
|
-
*/
|
|
799
|
-
"GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls": {
|
|
800
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls"]["parameters"];
|
|
801
|
-
response: Endpoints["GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls"]["response"];
|
|
802
|
-
};
|
|
803
|
-
/**
|
|
804
|
-
* @see https://docs.github.com/rest/reference/checks#list-check-runs-for-a-git-reference
|
|
805
|
-
*/
|
|
806
|
-
"GET /repos/{owner}/{repo}/commits/{ref}/check-runs": {
|
|
807
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/check-runs"]["parameters"];
|
|
808
|
-
response: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/check-runs"]["response"] & {
|
|
809
|
-
data: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/check-runs"]["response"]["data"]["check_runs"];
|
|
810
|
-
};
|
|
811
|
-
};
|
|
812
|
-
/**
|
|
813
|
-
* @see https://docs.github.com/rest/reference/checks#list-check-suites-for-a-git-reference
|
|
814
|
-
*/
|
|
815
|
-
"GET /repos/{owner}/{repo}/commits/{ref}/check-suites": {
|
|
816
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/check-suites"]["parameters"];
|
|
817
|
-
response: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/check-suites"]["response"] & {
|
|
818
|
-
data: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/check-suites"]["response"]["data"]["check_suites"];
|
|
819
|
-
};
|
|
820
|
-
};
|
|
821
|
-
/**
|
|
822
|
-
* @see https://docs.github.com/rest/reference/repos#get-the-combined-status-for-a-specific-reference
|
|
823
|
-
*/
|
|
824
|
-
"GET /repos/{owner}/{repo}/commits/{ref}/status": {
|
|
825
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/status"]["parameters"];
|
|
826
|
-
response: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/status"]["response"] & {
|
|
827
|
-
data: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/status"]["response"]["data"]["statuses"];
|
|
828
|
-
};
|
|
829
|
-
};
|
|
830
|
-
/**
|
|
831
|
-
* @see https://docs.github.com/rest/reference/repos#list-commit-statuses-for-a-reference
|
|
832
|
-
*/
|
|
833
|
-
"GET /repos/{owner}/{repo}/commits/{ref}/statuses": {
|
|
834
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/statuses"]["parameters"];
|
|
835
|
-
response: Endpoints["GET /repos/{owner}/{repo}/commits/{ref}/statuses"]["response"];
|
|
836
|
-
};
|
|
837
|
-
/**
|
|
838
|
-
* @see https://docs.github.com/rest/reference/repos#list-repository-contributors
|
|
839
|
-
*/
|
|
840
|
-
"GET /repos/{owner}/{repo}/contributors": {
|
|
841
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/contributors"]["parameters"];
|
|
842
|
-
response: Endpoints["GET /repos/{owner}/{repo}/contributors"]["response"];
|
|
843
|
-
};
|
|
844
|
-
/**
|
|
845
|
-
* @see https://docs.github.com/rest/reference/dependabot#list-repository-secrets
|
|
846
|
-
*/
|
|
847
|
-
"GET /repos/{owner}/{repo}/dependabot/secrets": {
|
|
848
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/dependabot/secrets"]["parameters"];
|
|
849
|
-
response: Endpoints["GET /repos/{owner}/{repo}/dependabot/secrets"]["response"] & {
|
|
850
|
-
data: Endpoints["GET /repos/{owner}/{repo}/dependabot/secrets"]["response"]["data"]["secrets"];
|
|
851
|
-
};
|
|
852
|
-
};
|
|
853
|
-
/**
|
|
854
|
-
* @see https://docs.github.com/rest/reference/repos#list-deployments
|
|
855
|
-
*/
|
|
856
|
-
"GET /repos/{owner}/{repo}/deployments": {
|
|
857
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/deployments"]["parameters"];
|
|
858
|
-
response: Endpoints["GET /repos/{owner}/{repo}/deployments"]["response"];
|
|
859
|
-
};
|
|
860
|
-
/**
|
|
861
|
-
* @see https://docs.github.com/rest/reference/repos#list-deployment-statuses
|
|
862
|
-
*/
|
|
863
|
-
"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses": {
|
|
864
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses"]["parameters"];
|
|
865
|
-
response: Endpoints["GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses"]["response"];
|
|
866
|
-
};
|
|
867
|
-
/**
|
|
868
|
-
* @see https://docs.github.com/rest/reference/repos#get-all-environments
|
|
869
|
-
*/
|
|
870
|
-
"GET /repos/{owner}/{repo}/environments": {
|
|
871
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/environments"]["parameters"];
|
|
872
|
-
response: Endpoints["GET /repos/{owner}/{repo}/environments"]["response"] & {
|
|
873
|
-
data: Endpoints["GET /repos/{owner}/{repo}/environments"]["response"]["data"]["environments"];
|
|
874
|
-
};
|
|
875
|
-
};
|
|
876
|
-
/**
|
|
877
|
-
* @see https://docs.github.com/rest/reference/activity#list-repository-events
|
|
878
|
-
*/
|
|
879
|
-
"GET /repos/{owner}/{repo}/events": {
|
|
880
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/events"]["parameters"];
|
|
881
|
-
response: Endpoints["GET /repos/{owner}/{repo}/events"]["response"];
|
|
882
|
-
};
|
|
883
|
-
/**
|
|
884
|
-
* @see https://docs.github.com/rest/reference/repos#list-forks
|
|
885
|
-
*/
|
|
886
|
-
"GET /repos/{owner}/{repo}/forks": {
|
|
887
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/forks"]["parameters"];
|
|
888
|
-
response: Endpoints["GET /repos/{owner}/{repo}/forks"]["response"];
|
|
889
|
-
};
|
|
890
|
-
/**
|
|
891
|
-
* @see https://docs.github.com/rest/reference/git#list-matching-references
|
|
892
|
-
*/
|
|
893
|
-
"GET /repos/{owner}/{repo}/git/matching-refs/{ref}": {
|
|
894
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/git/matching-refs/{ref}"]["parameters"];
|
|
895
|
-
response: Endpoints["GET /repos/{owner}/{repo}/git/matching-refs/{ref}"]["response"];
|
|
896
|
-
};
|
|
897
|
-
/**
|
|
898
|
-
* @see https://docs.github.com/rest/reference/repos#list-repository-webhooks
|
|
899
|
-
*/
|
|
900
|
-
"GET /repos/{owner}/{repo}/hooks": {
|
|
901
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/hooks"]["parameters"];
|
|
902
|
-
response: Endpoints["GET /repos/{owner}/{repo}/hooks"]["response"];
|
|
903
|
-
};
|
|
904
|
-
/**
|
|
905
|
-
* @see https://docs.github.com/rest/reference/repos#list-deliveries-for-a-repository-webhook
|
|
906
|
-
*/
|
|
907
|
-
"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries": {
|
|
908
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries"]["parameters"];
|
|
909
|
-
response: Endpoints["GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries"]["response"];
|
|
910
|
-
};
|
|
911
|
-
/**
|
|
912
|
-
* @see https://docs.github.com/rest/reference/repos#list-repository-invitations
|
|
913
|
-
*/
|
|
914
|
-
"GET /repos/{owner}/{repo}/invitations": {
|
|
915
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/invitations"]["parameters"];
|
|
916
|
-
response: Endpoints["GET /repos/{owner}/{repo}/invitations"]["response"];
|
|
917
|
-
};
|
|
918
|
-
/**
|
|
919
|
-
* @see https://docs.github.com/rest/reference/issues#list-repository-issues
|
|
920
|
-
*/
|
|
921
|
-
"GET /repos/{owner}/{repo}/issues": {
|
|
922
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues"]["parameters"];
|
|
923
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues"]["response"];
|
|
924
|
-
};
|
|
925
|
-
/**
|
|
926
|
-
* @see https://docs.github.com/rest/reference/issues#list-issue-comments-for-a-repository
|
|
927
|
-
*/
|
|
928
|
-
"GET /repos/{owner}/{repo}/issues/comments": {
|
|
929
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/comments"]["parameters"];
|
|
930
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/comments"]["response"];
|
|
931
|
-
};
|
|
932
|
-
/**
|
|
933
|
-
* @see https://docs.github.com/rest/reference/reactions#list-reactions-for-an-issue-comment
|
|
934
|
-
*/
|
|
935
|
-
"GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": {
|
|
936
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions"]["parameters"];
|
|
937
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions"]["response"];
|
|
938
|
-
};
|
|
939
|
-
/**
|
|
940
|
-
* @see https://docs.github.com/rest/reference/issues#list-issue-events-for-a-repository
|
|
941
|
-
*/
|
|
942
|
-
"GET /repos/{owner}/{repo}/issues/events": {
|
|
943
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/events"]["parameters"];
|
|
944
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/events"]["response"];
|
|
945
|
-
};
|
|
946
|
-
/**
|
|
947
|
-
* @see https://docs.github.com/rest/reference/issues#list-issue-comments
|
|
948
|
-
*/
|
|
949
|
-
"GET /repos/{owner}/{repo}/issues/{issue_number}/comments": {
|
|
950
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/comments"]["parameters"];
|
|
951
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/comments"]["response"];
|
|
952
|
-
};
|
|
953
|
-
/**
|
|
954
|
-
* @see https://docs.github.com/rest/reference/issues#list-issue-events
|
|
955
|
-
*/
|
|
956
|
-
"GET /repos/{owner}/{repo}/issues/{issue_number}/events": {
|
|
957
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/events"]["parameters"];
|
|
958
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/events"]["response"];
|
|
959
|
-
};
|
|
960
|
-
/**
|
|
961
|
-
* @see https://docs.github.com/rest/reference/issues#list-labels-for-an-issue
|
|
962
|
-
*/
|
|
963
|
-
"GET /repos/{owner}/{repo}/issues/{issue_number}/labels": {
|
|
964
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/labels"]["parameters"];
|
|
965
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/labels"]["response"];
|
|
966
|
-
};
|
|
967
|
-
/**
|
|
968
|
-
* @see https://docs.github.com/rest/reference/reactions#list-reactions-for-an-issue
|
|
969
|
-
*/
|
|
970
|
-
"GET /repos/{owner}/{repo}/issues/{issue_number}/reactions": {
|
|
971
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/reactions"]["parameters"];
|
|
972
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/reactions"]["response"];
|
|
973
|
-
};
|
|
974
|
-
/**
|
|
975
|
-
* @see https://docs.github.com/rest/reference/issues#list-timeline-events-for-an-issue
|
|
976
|
-
*/
|
|
977
|
-
"GET /repos/{owner}/{repo}/issues/{issue_number}/timeline": {
|
|
978
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/timeline"]["parameters"];
|
|
979
|
-
response: Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/timeline"]["response"];
|
|
980
|
-
};
|
|
981
|
-
/**
|
|
982
|
-
* @see https://docs.github.com/rest/reference/repos#list-deploy-keys
|
|
983
|
-
*/
|
|
984
|
-
"GET /repos/{owner}/{repo}/keys": {
|
|
985
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/keys"]["parameters"];
|
|
986
|
-
response: Endpoints["GET /repos/{owner}/{repo}/keys"]["response"];
|
|
987
|
-
};
|
|
988
|
-
/**
|
|
989
|
-
* @see https://docs.github.com/rest/reference/issues#list-labels-for-a-repository
|
|
990
|
-
*/
|
|
991
|
-
"GET /repos/{owner}/{repo}/labels": {
|
|
992
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/labels"]["parameters"];
|
|
993
|
-
response: Endpoints["GET /repos/{owner}/{repo}/labels"]["response"];
|
|
994
|
-
};
|
|
995
|
-
/**
|
|
996
|
-
* @see https://docs.github.com/rest/reference/issues#list-milestones
|
|
997
|
-
*/
|
|
998
|
-
"GET /repos/{owner}/{repo}/milestones": {
|
|
999
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/milestones"]["parameters"];
|
|
1000
|
-
response: Endpoints["GET /repos/{owner}/{repo}/milestones"]["response"];
|
|
1001
|
-
};
|
|
1002
|
-
/**
|
|
1003
|
-
* @see https://docs.github.com/rest/reference/issues#list-labels-for-issues-in-a-milestone
|
|
1004
|
-
*/
|
|
1005
|
-
"GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels": {
|
|
1006
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels"]["parameters"];
|
|
1007
|
-
response: Endpoints["GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels"]["response"];
|
|
1008
|
-
};
|
|
1009
|
-
/**
|
|
1010
|
-
* @see https://docs.github.com/rest/reference/activity#list-repository-notifications-for-the-authenticated-user
|
|
1011
|
-
*/
|
|
1012
|
-
"GET /repos/{owner}/{repo}/notifications": {
|
|
1013
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/notifications"]["parameters"];
|
|
1014
|
-
response: Endpoints["GET /repos/{owner}/{repo}/notifications"]["response"];
|
|
1015
|
-
};
|
|
1016
|
-
/**
|
|
1017
|
-
* @see https://docs.github.com/rest/reference/repos#list-github-pages-builds
|
|
1018
|
-
*/
|
|
1019
|
-
"GET /repos/{owner}/{repo}/pages/builds": {
|
|
1020
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pages/builds"]["parameters"];
|
|
1021
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pages/builds"]["response"];
|
|
1022
|
-
};
|
|
1023
|
-
/**
|
|
1024
|
-
* @see https://docs.github.com/rest/reference/projects#list-repository-projects
|
|
1025
|
-
*/
|
|
1026
|
-
"GET /repos/{owner}/{repo}/projects": {
|
|
1027
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/projects"]["parameters"];
|
|
1028
|
-
response: Endpoints["GET /repos/{owner}/{repo}/projects"]["response"];
|
|
1029
|
-
};
|
|
1030
|
-
/**
|
|
1031
|
-
* @see https://docs.github.com/rest/reference/pulls#list-pull-requests
|
|
1032
|
-
*/
|
|
1033
|
-
"GET /repos/{owner}/{repo}/pulls": {
|
|
1034
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls"]["parameters"];
|
|
1035
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls"]["response"];
|
|
1036
|
-
};
|
|
1037
|
-
/**
|
|
1038
|
-
* @see https://docs.github.com/rest/reference/pulls#list-review-comments-in-a-repository
|
|
1039
|
-
*/
|
|
1040
|
-
"GET /repos/{owner}/{repo}/pulls/comments": {
|
|
1041
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/comments"]["parameters"];
|
|
1042
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/comments"]["response"];
|
|
1043
|
-
};
|
|
1044
|
-
/**
|
|
1045
|
-
* @see https://docs.github.com/rest/reference/reactions#list-reactions-for-a-pull-request-review-comment
|
|
1046
|
-
*/
|
|
1047
|
-
"GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions": {
|
|
1048
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions"]["parameters"];
|
|
1049
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions"]["response"];
|
|
1050
|
-
};
|
|
1051
|
-
/**
|
|
1052
|
-
* @see https://docs.github.com/rest/reference/pulls#list-review-comments-on-a-pull-request
|
|
1053
|
-
*/
|
|
1054
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/comments": {
|
|
1055
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/comments"]["parameters"];
|
|
1056
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/comments"]["response"];
|
|
1057
|
-
};
|
|
1058
|
-
/**
|
|
1059
|
-
* @see https://docs.github.com/rest/reference/pulls#list-commits-on-a-pull-request
|
|
1060
|
-
*/
|
|
1061
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/commits": {
|
|
1062
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/commits"]["parameters"];
|
|
1063
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/commits"]["response"];
|
|
1064
|
-
};
|
|
1065
|
-
/**
|
|
1066
|
-
* @see https://docs.github.com/rest/reference/pulls#list-pull-requests-files
|
|
1067
|
-
*/
|
|
1068
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/files": {
|
|
1069
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/files"]["parameters"];
|
|
1070
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/files"]["response"];
|
|
1071
|
-
};
|
|
1072
|
-
/**
|
|
1073
|
-
* @see https://docs.github.com/rest/reference/pulls#list-requested-reviewers-for-a-pull-request
|
|
1074
|
-
*/
|
|
1075
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers": {
|
|
1076
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"]["parameters"];
|
|
1077
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"]["response"] & {
|
|
1078
|
-
data: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"]["response"]["data"]["users"];
|
|
1079
|
-
};
|
|
1080
|
-
};
|
|
1081
|
-
/**
|
|
1082
|
-
* @see https://docs.github.com/rest/reference/pulls#list-reviews-for-a-pull-request
|
|
1083
|
-
*/
|
|
1084
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews": {
|
|
1085
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews"]["parameters"];
|
|
1086
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews"]["response"];
|
|
1087
|
-
};
|
|
1088
|
-
/**
|
|
1089
|
-
* @see https://docs.github.com/rest/reference/pulls#list-comments-for-a-pull-request-review
|
|
1090
|
-
*/
|
|
1091
|
-
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments": {
|
|
1092
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments"]["parameters"];
|
|
1093
|
-
response: Endpoints["GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments"]["response"];
|
|
1094
|
-
};
|
|
1095
|
-
/**
|
|
1096
|
-
* @see https://docs.github.com/rest/reference/repos#list-releases
|
|
1097
|
-
*/
|
|
1098
|
-
"GET /repos/{owner}/{repo}/releases": {
|
|
1099
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/releases"]["parameters"];
|
|
1100
|
-
response: Endpoints["GET /repos/{owner}/{repo}/releases"]["response"];
|
|
1101
|
-
};
|
|
1102
|
-
/**
|
|
1103
|
-
* @see https://docs.github.com/rest/reference/repos#list-release-assets
|
|
1104
|
-
*/
|
|
1105
|
-
"GET /repos/{owner}/{repo}/releases/{release_id}/assets": {
|
|
1106
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/releases/{release_id}/assets"]["parameters"];
|
|
1107
|
-
response: Endpoints["GET /repos/{owner}/{repo}/releases/{release_id}/assets"]["response"];
|
|
1108
|
-
};
|
|
1109
|
-
/**
|
|
1110
|
-
* @see https://docs.github.com/rest/reference/reactions/#list-reactions-for-a-release
|
|
1111
|
-
*/
|
|
1112
|
-
"GET /repos/{owner}/{repo}/releases/{release_id}/reactions": {
|
|
1113
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/releases/{release_id}/reactions"]["parameters"];
|
|
1114
|
-
response: Endpoints["GET /repos/{owner}/{repo}/releases/{release_id}/reactions"]["response"];
|
|
1115
|
-
};
|
|
1116
|
-
/**
|
|
1117
|
-
* @see https://docs.github.com/rest/reference/secret-scanning#list-secret-scanning-alerts-for-a-repository
|
|
1118
|
-
*/
|
|
1119
|
-
"GET /repos/{owner}/{repo}/secret-scanning/alerts": {
|
|
1120
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/secret-scanning/alerts"]["parameters"];
|
|
1121
|
-
response: Endpoints["GET /repos/{owner}/{repo}/secret-scanning/alerts"]["response"];
|
|
1122
|
-
};
|
|
1123
|
-
/**
|
|
1124
|
-
* @see https://docs.github.com/rest/reference/secret-scanning#list-locations-for-a-secret-scanning-alert
|
|
1125
|
-
*/
|
|
1126
|
-
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations": {
|
|
1127
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations"]["parameters"];
|
|
1128
|
-
response: Endpoints["GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations"]["response"];
|
|
1129
|
-
};
|
|
1130
|
-
/**
|
|
1131
|
-
* @see https://docs.github.com/rest/reference/activity#list-stargazers
|
|
1132
|
-
*/
|
|
1133
|
-
"GET /repos/{owner}/{repo}/stargazers": {
|
|
1134
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/stargazers"]["parameters"];
|
|
1135
|
-
response: Endpoints["GET /repos/{owner}/{repo}/stargazers"]["response"];
|
|
1136
|
-
};
|
|
1137
|
-
/**
|
|
1138
|
-
* @see https://docs.github.com/rest/reference/activity#list-watchers
|
|
1139
|
-
*/
|
|
1140
|
-
"GET /repos/{owner}/{repo}/subscribers": {
|
|
1141
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/subscribers"]["parameters"];
|
|
1142
|
-
response: Endpoints["GET /repos/{owner}/{repo}/subscribers"]["response"];
|
|
1143
|
-
};
|
|
1144
|
-
/**
|
|
1145
|
-
* @see https://docs.github.com/rest/reference/repos#list-repository-tags
|
|
1146
|
-
*/
|
|
1147
|
-
"GET /repos/{owner}/{repo}/tags": {
|
|
1148
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/tags"]["parameters"];
|
|
1149
|
-
response: Endpoints["GET /repos/{owner}/{repo}/tags"]["response"];
|
|
1150
|
-
};
|
|
1151
|
-
/**
|
|
1152
|
-
* @see https://docs.github.com/rest/reference/repos#list-repository-teams
|
|
1153
|
-
*/
|
|
1154
|
-
"GET /repos/{owner}/{repo}/teams": {
|
|
1155
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/teams"]["parameters"];
|
|
1156
|
-
response: Endpoints["GET /repos/{owner}/{repo}/teams"]["response"];
|
|
1157
|
-
};
|
|
1158
|
-
/**
|
|
1159
|
-
* @see https://docs.github.com/rest/reference/repos#get-all-repository-topics
|
|
1160
|
-
*/
|
|
1161
|
-
"GET /repos/{owner}/{repo}/topics": {
|
|
1162
|
-
parameters: Endpoints["GET /repos/{owner}/{repo}/topics"]["parameters"];
|
|
1163
|
-
response: Endpoints["GET /repos/{owner}/{repo}/topics"]["response"] & {
|
|
1164
|
-
data: Endpoints["GET /repos/{owner}/{repo}/topics"]["response"]["data"]["names"];
|
|
1165
|
-
};
|
|
1166
|
-
};
|
|
1167
|
-
/**
|
|
1168
|
-
* @see https://docs.github.com/rest/reference/repos#list-public-repositories
|
|
1169
|
-
*/
|
|
1170
|
-
"GET /repositories": {
|
|
1171
|
-
parameters: Endpoints["GET /repositories"]["parameters"];
|
|
1172
|
-
response: Endpoints["GET /repositories"]["response"];
|
|
1173
|
-
};
|
|
1174
|
-
/**
|
|
1175
|
-
* @see https://docs.github.com/rest/reference/actions#list-environment-secrets
|
|
1176
|
-
*/
|
|
1177
|
-
"GET /repositories/{repository_id}/environments/{environment_name}/secrets": {
|
|
1178
|
-
parameters: Endpoints["GET /repositories/{repository_id}/environments/{environment_name}/secrets"]["parameters"];
|
|
1179
|
-
response: Endpoints["GET /repositories/{repository_id}/environments/{environment_name}/secrets"]["response"] & {
|
|
1180
|
-
data: Endpoints["GET /repositories/{repository_id}/environments/{environment_name}/secrets"]["response"]["data"]["secrets"];
|
|
1181
|
-
};
|
|
1182
|
-
};
|
|
1183
|
-
/**
|
|
1184
|
-
* @see https://docs.github.com/rest/reference/search#search-code
|
|
1185
|
-
*/
|
|
1186
|
-
"GET /search/code": {
|
|
1187
|
-
parameters: Endpoints["GET /search/code"]["parameters"];
|
|
1188
|
-
response: Endpoints["GET /search/code"]["response"] & {
|
|
1189
|
-
data: Endpoints["GET /search/code"]["response"]["data"]["items"];
|
|
1190
|
-
};
|
|
1191
|
-
};
|
|
1192
|
-
/**
|
|
1193
|
-
* @see https://docs.github.com/rest/reference/search#search-commits
|
|
1194
|
-
*/
|
|
1195
|
-
"GET /search/commits": {
|
|
1196
|
-
parameters: Endpoints["GET /search/commits"]["parameters"];
|
|
1197
|
-
response: Endpoints["GET /search/commits"]["response"] & {
|
|
1198
|
-
data: Endpoints["GET /search/commits"]["response"]["data"]["items"];
|
|
1199
|
-
};
|
|
1200
|
-
};
|
|
1201
|
-
/**
|
|
1202
|
-
* @see https://docs.github.com/rest/reference/search#search-issues-and-pull-requests
|
|
1203
|
-
*/
|
|
1204
|
-
"GET /search/issues": {
|
|
1205
|
-
parameters: Endpoints["GET /search/issues"]["parameters"];
|
|
1206
|
-
response: Endpoints["GET /search/issues"]["response"] & {
|
|
1207
|
-
data: Endpoints["GET /search/issues"]["response"]["data"]["items"];
|
|
1208
|
-
};
|
|
1209
|
-
};
|
|
1210
|
-
/**
|
|
1211
|
-
* @see https://docs.github.com/rest/reference/search#search-labels
|
|
1212
|
-
*/
|
|
1213
|
-
"GET /search/labels": {
|
|
1214
|
-
parameters: Endpoints["GET /search/labels"]["parameters"];
|
|
1215
|
-
response: Endpoints["GET /search/labels"]["response"] & {
|
|
1216
|
-
data: Endpoints["GET /search/labels"]["response"]["data"]["items"];
|
|
1217
|
-
};
|
|
1218
|
-
};
|
|
1219
|
-
/**
|
|
1220
|
-
* @see https://docs.github.com/rest/reference/search#search-repositories
|
|
1221
|
-
*/
|
|
1222
|
-
"GET /search/repositories": {
|
|
1223
|
-
parameters: Endpoints["GET /search/repositories"]["parameters"];
|
|
1224
|
-
response: Endpoints["GET /search/repositories"]["response"] & {
|
|
1225
|
-
data: Endpoints["GET /search/repositories"]["response"]["data"]["items"];
|
|
1226
|
-
};
|
|
1227
|
-
};
|
|
1228
|
-
/**
|
|
1229
|
-
* @see https://docs.github.com/rest/reference/search#search-topics
|
|
1230
|
-
*/
|
|
1231
|
-
"GET /search/topics": {
|
|
1232
|
-
parameters: Endpoints["GET /search/topics"]["parameters"];
|
|
1233
|
-
response: Endpoints["GET /search/topics"]["response"] & {
|
|
1234
|
-
data: Endpoints["GET /search/topics"]["response"]["data"]["items"];
|
|
1235
|
-
};
|
|
1236
|
-
};
|
|
1237
|
-
/**
|
|
1238
|
-
* @see https://docs.github.com/rest/reference/search#search-users
|
|
1239
|
-
*/
|
|
1240
|
-
"GET /search/users": {
|
|
1241
|
-
parameters: Endpoints["GET /search/users"]["parameters"];
|
|
1242
|
-
response: Endpoints["GET /search/users"]["response"] & {
|
|
1243
|
-
data: Endpoints["GET /search/users"]["response"]["data"]["items"];
|
|
1244
|
-
};
|
|
1245
|
-
};
|
|
1246
|
-
/**
|
|
1247
|
-
* @see https://docs.github.com/rest/reference/teams#list-discussions-legacy
|
|
1248
|
-
*/
|
|
1249
|
-
"GET /teams/{team_id}/discussions": {
|
|
1250
|
-
parameters: Endpoints["GET /teams/{team_id}/discussions"]["parameters"];
|
|
1251
|
-
response: Endpoints["GET /teams/{team_id}/discussions"]["response"];
|
|
1252
|
-
};
|
|
1253
|
-
/**
|
|
1254
|
-
* @see https://docs.github.com/rest/reference/teams#list-discussion-comments-legacy
|
|
1255
|
-
*/
|
|
1256
|
-
"GET /teams/{team_id}/discussions/{discussion_number}/comments": {
|
|
1257
|
-
parameters: Endpoints["GET /teams/{team_id}/discussions/{discussion_number}/comments"]["parameters"];
|
|
1258
|
-
response: Endpoints["GET /teams/{team_id}/discussions/{discussion_number}/comments"]["response"];
|
|
1259
|
-
};
|
|
1260
|
-
/**
|
|
1261
|
-
* @see https://docs.github.com/rest/reference/reactions/#list-reactions-for-a-team-discussion-comment-legacy
|
|
1262
|
-
*/
|
|
1263
|
-
"GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions": {
|
|
1264
|
-
parameters: Endpoints["GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions"]["parameters"];
|
|
1265
|
-
response: Endpoints["GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions"]["response"];
|
|
1266
|
-
};
|
|
1267
|
-
/**
|
|
1268
|
-
* @see https://docs.github.com/rest/reference/reactions/#list-reactions-for-a-team-discussion-legacy
|
|
1269
|
-
*/
|
|
1270
|
-
"GET /teams/{team_id}/discussions/{discussion_number}/reactions": {
|
|
1271
|
-
parameters: Endpoints["GET /teams/{team_id}/discussions/{discussion_number}/reactions"]["parameters"];
|
|
1272
|
-
response: Endpoints["GET /teams/{team_id}/discussions/{discussion_number}/reactions"]["response"];
|
|
1273
|
-
};
|
|
1274
|
-
/**
|
|
1275
|
-
* @see https://docs.github.com/rest/reference/teams#list-pending-team-invitations-legacy
|
|
1276
|
-
*/
|
|
1277
|
-
"GET /teams/{team_id}/invitations": {
|
|
1278
|
-
parameters: Endpoints["GET /teams/{team_id}/invitations"]["parameters"];
|
|
1279
|
-
response: Endpoints["GET /teams/{team_id}/invitations"]["response"];
|
|
1280
|
-
};
|
|
1281
|
-
/**
|
|
1282
|
-
* @see https://docs.github.com/rest/reference/teams#list-team-members-legacy
|
|
1283
|
-
*/
|
|
1284
|
-
"GET /teams/{team_id}/members": {
|
|
1285
|
-
parameters: Endpoints["GET /teams/{team_id}/members"]["parameters"];
|
|
1286
|
-
response: Endpoints["GET /teams/{team_id}/members"]["response"];
|
|
1287
|
-
};
|
|
1288
|
-
/**
|
|
1289
|
-
* @see https://docs.github.com/rest/reference/teams/#list-team-projects-legacy
|
|
1290
|
-
*/
|
|
1291
|
-
"GET /teams/{team_id}/projects": {
|
|
1292
|
-
parameters: Endpoints["GET /teams/{team_id}/projects"]["parameters"];
|
|
1293
|
-
response: Endpoints["GET /teams/{team_id}/projects"]["response"];
|
|
1294
|
-
};
|
|
1295
|
-
/**
|
|
1296
|
-
* @see https://docs.github.com/rest/reference/teams/#list-team-repositories-legacy
|
|
1297
|
-
*/
|
|
1298
|
-
"GET /teams/{team_id}/repos": {
|
|
1299
|
-
parameters: Endpoints["GET /teams/{team_id}/repos"]["parameters"];
|
|
1300
|
-
response: Endpoints["GET /teams/{team_id}/repos"]["response"];
|
|
1301
|
-
};
|
|
1302
|
-
/**
|
|
1303
|
-
* @see https://docs.github.com/rest/reference/teams/#list-child-teams-legacy
|
|
1304
|
-
*/
|
|
1305
|
-
"GET /teams/{team_id}/teams": {
|
|
1306
|
-
parameters: Endpoints["GET /teams/{team_id}/teams"]["parameters"];
|
|
1307
|
-
response: Endpoints["GET /teams/{team_id}/teams"]["response"];
|
|
1308
|
-
};
|
|
1309
|
-
/**
|
|
1310
|
-
* @see https://docs.github.com/rest/reference/users#list-users-blocked-by-the-authenticated-user
|
|
1311
|
-
*/
|
|
1312
|
-
"GET /user/blocks": {
|
|
1313
|
-
parameters: Endpoints["GET /user/blocks"]["parameters"];
|
|
1314
|
-
response: Endpoints["GET /user/blocks"]["response"];
|
|
1315
|
-
};
|
|
1316
|
-
/**
|
|
1317
|
-
* @see https://docs.github.com/rest/reference/codespaces#list-codespaces-for-the-authenticated-user
|
|
1318
|
-
*/
|
|
1319
|
-
"GET /user/codespaces": {
|
|
1320
|
-
parameters: Endpoints["GET /user/codespaces"]["parameters"];
|
|
1321
|
-
response: Endpoints["GET /user/codespaces"]["response"] & {
|
|
1322
|
-
data: Endpoints["GET /user/codespaces"]["response"]["data"]["codespaces"];
|
|
1323
|
-
};
|
|
1324
|
-
};
|
|
1325
|
-
/**
|
|
1326
|
-
* @see https://docs.github.com/rest/reference/codespaces#list-secrets-for-the-authenticated-user
|
|
1327
|
-
*/
|
|
1328
|
-
"GET /user/codespaces/secrets": {
|
|
1329
|
-
parameters: Endpoints["GET /user/codespaces/secrets"]["parameters"];
|
|
1330
|
-
response: Endpoints["GET /user/codespaces/secrets"]["response"] & {
|
|
1331
|
-
data: Endpoints["GET /user/codespaces/secrets"]["response"]["data"]["secrets"];
|
|
1332
|
-
};
|
|
1333
|
-
};
|
|
1334
|
-
/**
|
|
1335
|
-
* @see https://docs.github.com/rest/reference/users#list-email-addresses-for-the-authenticated-user
|
|
1336
|
-
*/
|
|
1337
|
-
"GET /user/emails": {
|
|
1338
|
-
parameters: Endpoints["GET /user/emails"]["parameters"];
|
|
1339
|
-
response: Endpoints["GET /user/emails"]["response"];
|
|
1340
|
-
};
|
|
1341
|
-
/**
|
|
1342
|
-
* @see https://docs.github.com/rest/reference/users#list-followers-of-the-authenticated-user
|
|
1343
|
-
*/
|
|
1344
|
-
"GET /user/followers": {
|
|
1345
|
-
parameters: Endpoints["GET /user/followers"]["parameters"];
|
|
1346
|
-
response: Endpoints["GET /user/followers"]["response"];
|
|
1347
|
-
};
|
|
1348
|
-
/**
|
|
1349
|
-
* @see https://docs.github.com/rest/reference/users#list-the-people-the-authenticated-user-follows
|
|
1350
|
-
*/
|
|
1351
|
-
"GET /user/following": {
|
|
1352
|
-
parameters: Endpoints["GET /user/following"]["parameters"];
|
|
1353
|
-
response: Endpoints["GET /user/following"]["response"];
|
|
1354
|
-
};
|
|
1355
|
-
/**
|
|
1356
|
-
* @see https://docs.github.com/rest/reference/users#list-gpg-keys-for-the-authenticated-user
|
|
1357
|
-
*/
|
|
1358
|
-
"GET /user/gpg_keys": {
|
|
1359
|
-
parameters: Endpoints["GET /user/gpg_keys"]["parameters"];
|
|
1360
|
-
response: Endpoints["GET /user/gpg_keys"]["response"];
|
|
1361
|
-
};
|
|
1362
|
-
/**
|
|
1363
|
-
* @see https://docs.github.com/rest/reference/apps#list-app-installations-accessible-to-the-user-access-token
|
|
1364
|
-
*/
|
|
1365
|
-
"GET /user/installations": {
|
|
1366
|
-
parameters: Endpoints["GET /user/installations"]["parameters"];
|
|
1367
|
-
response: Endpoints["GET /user/installations"]["response"] & {
|
|
1368
|
-
data: Endpoints["GET /user/installations"]["response"]["data"]["installations"];
|
|
1369
|
-
};
|
|
1370
|
-
};
|
|
1371
|
-
/**
|
|
1372
|
-
* @see https://docs.github.com/rest/reference/apps#list-repositories-accessible-to-the-user-access-token
|
|
1373
|
-
*/
|
|
1374
|
-
"GET /user/installations/{installation_id}/repositories": {
|
|
1375
|
-
parameters: Endpoints["GET /user/installations/{installation_id}/repositories"]["parameters"];
|
|
1376
|
-
response: Endpoints["GET /user/installations/{installation_id}/repositories"]["response"] & {
|
|
1377
|
-
data: Endpoints["GET /user/installations/{installation_id}/repositories"]["response"]["data"]["repositories"];
|
|
1378
|
-
};
|
|
1379
|
-
};
|
|
1380
|
-
/**
|
|
1381
|
-
* @see https://docs.github.com/rest/reference/issues#list-user-account-issues-assigned-to-the-authenticated-user
|
|
1382
|
-
*/
|
|
1383
|
-
"GET /user/issues": {
|
|
1384
|
-
parameters: Endpoints["GET /user/issues"]["parameters"];
|
|
1385
|
-
response: Endpoints["GET /user/issues"]["response"];
|
|
1386
|
-
};
|
|
1387
|
-
/**
|
|
1388
|
-
* @see https://docs.github.com/rest/reference/users#list-public-ssh-keys-for-the-authenticated-user
|
|
1389
|
-
*/
|
|
1390
|
-
"GET /user/keys": {
|
|
1391
|
-
parameters: Endpoints["GET /user/keys"]["parameters"];
|
|
1392
|
-
response: Endpoints["GET /user/keys"]["response"];
|
|
1393
|
-
};
|
|
1394
|
-
/**
|
|
1395
|
-
* @see https://docs.github.com/rest/reference/apps#list-subscriptions-for-the-authenticated-user
|
|
1396
|
-
*/
|
|
1397
|
-
"GET /user/marketplace_purchases": {
|
|
1398
|
-
parameters: Endpoints["GET /user/marketplace_purchases"]["parameters"];
|
|
1399
|
-
response: Endpoints["GET /user/marketplace_purchases"]["response"];
|
|
1400
|
-
};
|
|
1401
|
-
/**
|
|
1402
|
-
* @see https://docs.github.com/rest/reference/apps#list-subscriptions-for-the-authenticated-user-stubbed
|
|
1403
|
-
*/
|
|
1404
|
-
"GET /user/marketplace_purchases/stubbed": {
|
|
1405
|
-
parameters: Endpoints["GET /user/marketplace_purchases/stubbed"]["parameters"];
|
|
1406
|
-
response: Endpoints["GET /user/marketplace_purchases/stubbed"]["response"];
|
|
1407
|
-
};
|
|
1408
|
-
/**
|
|
1409
|
-
* @see https://docs.github.com/rest/reference/orgs#list-organization-memberships-for-the-authenticated-user
|
|
1410
|
-
*/
|
|
1411
|
-
"GET /user/memberships/orgs": {
|
|
1412
|
-
parameters: Endpoints["GET /user/memberships/orgs"]["parameters"];
|
|
1413
|
-
response: Endpoints["GET /user/memberships/orgs"]["response"];
|
|
1414
|
-
};
|
|
1415
|
-
/**
|
|
1416
|
-
* @see https://docs.github.com/rest/reference/migrations#list-user-migrations
|
|
1417
|
-
*/
|
|
1418
|
-
"GET /user/migrations": {
|
|
1419
|
-
parameters: Endpoints["GET /user/migrations"]["parameters"];
|
|
1420
|
-
response: Endpoints["GET /user/migrations"]["response"];
|
|
1421
|
-
};
|
|
1422
|
-
/**
|
|
1423
|
-
* @see https://docs.github.com/rest/reference/migrations#list-repositories-for-a-user-migration
|
|
1424
|
-
*/
|
|
1425
|
-
"GET /user/migrations/{migration_id}/repositories": {
|
|
1426
|
-
parameters: Endpoints["GET /user/migrations/{migration_id}/repositories"]["parameters"];
|
|
1427
|
-
response: Endpoints["GET /user/migrations/{migration_id}/repositories"]["response"];
|
|
1428
|
-
};
|
|
1429
|
-
/**
|
|
1430
|
-
* @see https://docs.github.com/rest/reference/orgs#list-organizations-for-the-authenticated-user
|
|
1431
|
-
*/
|
|
1432
|
-
"GET /user/orgs": {
|
|
1433
|
-
parameters: Endpoints["GET /user/orgs"]["parameters"];
|
|
1434
|
-
response: Endpoints["GET /user/orgs"]["response"];
|
|
1435
|
-
};
|
|
1436
|
-
/**
|
|
1437
|
-
* @see https://docs.github.com/rest/reference/packages#list-packages-for-the-authenticated-user
|
|
1438
|
-
*/
|
|
1439
|
-
"GET /user/packages": {
|
|
1440
|
-
parameters: Endpoints["GET /user/packages"]["parameters"];
|
|
1441
|
-
response: Endpoints["GET /user/packages"]["response"];
|
|
1442
|
-
};
|
|
1443
|
-
/**
|
|
1444
|
-
* @see https://docs.github.com/rest/reference/packages#get-all-package-versions-for-a-package-owned-by-the-authenticated-user
|
|
1445
|
-
*/
|
|
1446
|
-
"GET /user/packages/{package_type}/{package_name}/versions": {
|
|
1447
|
-
parameters: Endpoints["GET /user/packages/{package_type}/{package_name}/versions"]["parameters"];
|
|
1448
|
-
response: Endpoints["GET /user/packages/{package_type}/{package_name}/versions"]["response"];
|
|
1449
|
-
};
|
|
1450
|
-
/**
|
|
1451
|
-
* @see https://docs.github.com/rest/reference/users#list-public-email-addresses-for-the-authenticated-user
|
|
1452
|
-
*/
|
|
1453
|
-
"GET /user/public_emails": {
|
|
1454
|
-
parameters: Endpoints["GET /user/public_emails"]["parameters"];
|
|
1455
|
-
response: Endpoints["GET /user/public_emails"]["response"];
|
|
1456
|
-
};
|
|
1457
|
-
/**
|
|
1458
|
-
* @see https://docs.github.com/rest/reference/repos#list-repositories-for-the-authenticated-user
|
|
1459
|
-
*/
|
|
1460
|
-
"GET /user/repos": {
|
|
1461
|
-
parameters: Endpoints["GET /user/repos"]["parameters"];
|
|
1462
|
-
response: Endpoints["GET /user/repos"]["response"];
|
|
1463
|
-
};
|
|
1464
|
-
/**
|
|
1465
|
-
* @see https://docs.github.com/rest/reference/repos#list-repository-invitations-for-the-authenticated-user
|
|
1466
|
-
*/
|
|
1467
|
-
"GET /user/repository_invitations": {
|
|
1468
|
-
parameters: Endpoints["GET /user/repository_invitations"]["parameters"];
|
|
1469
|
-
response: Endpoints["GET /user/repository_invitations"]["response"];
|
|
1470
|
-
};
|
|
1471
|
-
/**
|
|
1472
|
-
* @see https://docs.github.com/rest/reference/activity#list-repositories-starred-by-the-authenticated-user
|
|
1473
|
-
*/
|
|
1474
|
-
"GET /user/starred": {
|
|
1475
|
-
parameters: Endpoints["GET /user/starred"]["parameters"];
|
|
1476
|
-
response: Endpoints["GET /user/starred"]["response"];
|
|
1477
|
-
};
|
|
1478
|
-
/**
|
|
1479
|
-
* @see https://docs.github.com/rest/reference/activity#list-repositories-watched-by-the-authenticated-user
|
|
1480
|
-
*/
|
|
1481
|
-
"GET /user/subscriptions": {
|
|
1482
|
-
parameters: Endpoints["GET /user/subscriptions"]["parameters"];
|
|
1483
|
-
response: Endpoints["GET /user/subscriptions"]["response"];
|
|
1484
|
-
};
|
|
1485
|
-
/**
|
|
1486
|
-
* @see https://docs.github.com/rest/reference/teams#list-teams-for-the-authenticated-user
|
|
1487
|
-
*/
|
|
1488
|
-
"GET /user/teams": {
|
|
1489
|
-
parameters: Endpoints["GET /user/teams"]["parameters"];
|
|
1490
|
-
response: Endpoints["GET /user/teams"]["response"];
|
|
1491
|
-
};
|
|
1492
|
-
/**
|
|
1493
|
-
* @see https://docs.github.com/rest/reference/users#list-users
|
|
1494
|
-
*/
|
|
1495
|
-
"GET /users": {
|
|
1496
|
-
parameters: Endpoints["GET /users"]["parameters"];
|
|
1497
|
-
response: Endpoints["GET /users"]["response"];
|
|
1498
|
-
};
|
|
1499
|
-
/**
|
|
1500
|
-
* @see https://docs.github.com/rest/reference/activity#list-events-for-the-authenticated-user
|
|
1501
|
-
*/
|
|
1502
|
-
"GET /users/{username}/events": {
|
|
1503
|
-
parameters: Endpoints["GET /users/{username}/events"]["parameters"];
|
|
1504
|
-
response: Endpoints["GET /users/{username}/events"]["response"];
|
|
1505
|
-
};
|
|
1506
|
-
/**
|
|
1507
|
-
* @see https://docs.github.com/rest/reference/activity#list-organization-events-for-the-authenticated-user
|
|
1508
|
-
*/
|
|
1509
|
-
"GET /users/{username}/events/orgs/{org}": {
|
|
1510
|
-
parameters: Endpoints["GET /users/{username}/events/orgs/{org}"]["parameters"];
|
|
1511
|
-
response: Endpoints["GET /users/{username}/events/orgs/{org}"]["response"];
|
|
1512
|
-
};
|
|
1513
|
-
/**
|
|
1514
|
-
* @see https://docs.github.com/rest/reference/activity#list-public-events-for-a-user
|
|
1515
|
-
*/
|
|
1516
|
-
"GET /users/{username}/events/public": {
|
|
1517
|
-
parameters: Endpoints["GET /users/{username}/events/public"]["parameters"];
|
|
1518
|
-
response: Endpoints["GET /users/{username}/events/public"]["response"];
|
|
1519
|
-
};
|
|
1520
|
-
/**
|
|
1521
|
-
* @see https://docs.github.com/rest/reference/users#list-followers-of-a-user
|
|
1522
|
-
*/
|
|
1523
|
-
"GET /users/{username}/followers": {
|
|
1524
|
-
parameters: Endpoints["GET /users/{username}/followers"]["parameters"];
|
|
1525
|
-
response: Endpoints["GET /users/{username}/followers"]["response"];
|
|
1526
|
-
};
|
|
1527
|
-
/**
|
|
1528
|
-
* @see https://docs.github.com/rest/reference/users#list-the-people-a-user-follows
|
|
1529
|
-
*/
|
|
1530
|
-
"GET /users/{username}/following": {
|
|
1531
|
-
parameters: Endpoints["GET /users/{username}/following"]["parameters"];
|
|
1532
|
-
response: Endpoints["GET /users/{username}/following"]["response"];
|
|
1533
|
-
};
|
|
1534
|
-
/**
|
|
1535
|
-
* @see https://docs.github.com/rest/reference/gists#list-gists-for-a-user
|
|
1536
|
-
*/
|
|
1537
|
-
"GET /users/{username}/gists": {
|
|
1538
|
-
parameters: Endpoints["GET /users/{username}/gists"]["parameters"];
|
|
1539
|
-
response: Endpoints["GET /users/{username}/gists"]["response"];
|
|
1540
|
-
};
|
|
1541
|
-
/**
|
|
1542
|
-
* @see https://docs.github.com/rest/reference/users#list-gpg-keys-for-a-user
|
|
1543
|
-
*/
|
|
1544
|
-
"GET /users/{username}/gpg_keys": {
|
|
1545
|
-
parameters: Endpoints["GET /users/{username}/gpg_keys"]["parameters"];
|
|
1546
|
-
response: Endpoints["GET /users/{username}/gpg_keys"]["response"];
|
|
1547
|
-
};
|
|
1548
|
-
/**
|
|
1549
|
-
* @see https://docs.github.com/rest/reference/users#list-public-keys-for-a-user
|
|
1550
|
-
*/
|
|
1551
|
-
"GET /users/{username}/keys": {
|
|
1552
|
-
parameters: Endpoints["GET /users/{username}/keys"]["parameters"];
|
|
1553
|
-
response: Endpoints["GET /users/{username}/keys"]["response"];
|
|
1554
|
-
};
|
|
1555
|
-
/**
|
|
1556
|
-
* @see https://docs.github.com/rest/reference/orgs#list-organizations-for-a-user
|
|
1557
|
-
*/
|
|
1558
|
-
"GET /users/{username}/orgs": {
|
|
1559
|
-
parameters: Endpoints["GET /users/{username}/orgs"]["parameters"];
|
|
1560
|
-
response: Endpoints["GET /users/{username}/orgs"]["response"];
|
|
1561
|
-
};
|
|
1562
|
-
/**
|
|
1563
|
-
* @see https://docs.github.com/rest/reference/packages#list-packages-for-user
|
|
1564
|
-
*/
|
|
1565
|
-
"GET /users/{username}/packages": {
|
|
1566
|
-
parameters: Endpoints["GET /users/{username}/packages"]["parameters"];
|
|
1567
|
-
response: Endpoints["GET /users/{username}/packages"]["response"];
|
|
1568
|
-
};
|
|
1569
|
-
/**
|
|
1570
|
-
* @see https://docs.github.com/rest/reference/projects#list-user-projects
|
|
1571
|
-
*/
|
|
1572
|
-
"GET /users/{username}/projects": {
|
|
1573
|
-
parameters: Endpoints["GET /users/{username}/projects"]["parameters"];
|
|
1574
|
-
response: Endpoints["GET /users/{username}/projects"]["response"];
|
|
1575
|
-
};
|
|
1576
|
-
/**
|
|
1577
|
-
* @see https://docs.github.com/rest/reference/activity#list-events-received-by-the-authenticated-user
|
|
1578
|
-
*/
|
|
1579
|
-
"GET /users/{username}/received_events": {
|
|
1580
|
-
parameters: Endpoints["GET /users/{username}/received_events"]["parameters"];
|
|
1581
|
-
response: Endpoints["GET /users/{username}/received_events"]["response"];
|
|
1582
|
-
};
|
|
1583
|
-
/**
|
|
1584
|
-
* @see https://docs.github.com/rest/reference/activity#list-public-events-received-by-a-user
|
|
1585
|
-
*/
|
|
1586
|
-
"GET /users/{username}/received_events/public": {
|
|
1587
|
-
parameters: Endpoints["GET /users/{username}/received_events/public"]["parameters"];
|
|
1588
|
-
response: Endpoints["GET /users/{username}/received_events/public"]["response"];
|
|
1589
|
-
};
|
|
1590
|
-
/**
|
|
1591
|
-
* @see https://docs.github.com/rest/reference/repos#list-repositories-for-a-user
|
|
1592
|
-
*/
|
|
1593
|
-
"GET /users/{username}/repos": {
|
|
1594
|
-
parameters: Endpoints["GET /users/{username}/repos"]["parameters"];
|
|
1595
|
-
response: Endpoints["GET /users/{username}/repos"]["response"];
|
|
1596
|
-
};
|
|
1597
|
-
/**
|
|
1598
|
-
* @see https://docs.github.com/rest/reference/activity#list-repositories-starred-by-a-user
|
|
1599
|
-
*/
|
|
1600
|
-
"GET /users/{username}/starred": {
|
|
1601
|
-
parameters: Endpoints["GET /users/{username}/starred"]["parameters"];
|
|
1602
|
-
response: Endpoints["GET /users/{username}/starred"]["response"];
|
|
1603
|
-
};
|
|
1604
|
-
/**
|
|
1605
|
-
* @see https://docs.github.com/rest/reference/activity#list-repositories-watched-by-a-user
|
|
1606
|
-
*/
|
|
1607
|
-
"GET /users/{username}/subscriptions": {
|
|
1608
|
-
parameters: Endpoints["GET /users/{username}/subscriptions"]["parameters"];
|
|
1609
|
-
response: Endpoints["GET /users/{username}/subscriptions"]["response"];
|
|
1610
|
-
};
|
|
1611
|
-
}
|
|
1612
|
-
export declare const paginatingEndpoints: (keyof PaginatingEndpoints)[];
|