@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
|
@@ -149,24 +149,25 @@
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
function isValid(m) {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
152
|
+
var flags = null,
|
|
153
|
+
parsedParts = false,
|
|
154
|
+
isNowValid = m._d && !isNaN(m._d.getTime());
|
|
155
|
+
if (isNowValid) {
|
|
156
|
+
flags = getParsingFlags(m);
|
|
157
|
+
parsedParts = some.call(flags.parsedDateParts, function (i) {
|
|
158
|
+
return i != null;
|
|
159
|
+
});
|
|
160
|
+
isNowValid =
|
|
161
|
+
flags.overflow < 0 &&
|
|
162
|
+
!flags.empty &&
|
|
163
|
+
!flags.invalidEra &&
|
|
164
|
+
!flags.invalidMonth &&
|
|
165
|
+
!flags.invalidWeekday &&
|
|
166
|
+
!flags.weekdayMismatch &&
|
|
167
|
+
!flags.nullInput &&
|
|
168
|
+
!flags.invalidFormat &&
|
|
169
|
+
!flags.userInvalidated &&
|
|
170
|
+
(!flags.meridiem || (flags.meridiem && parsedParts));
|
|
170
171
|
if (m._strict) {
|
|
171
172
|
isNowValid =
|
|
172
173
|
isNowValid &&
|
|
@@ -174,12 +175,11 @@
|
|
|
174
175
|
flags.unusedTokens.length === 0 &&
|
|
175
176
|
flags.bigHour === undefined;
|
|
176
177
|
}
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
}
|
|
178
|
+
}
|
|
179
|
+
if (Object.isFrozen == null || !Object.isFrozen(m)) {
|
|
180
|
+
m._isValid = isNowValid;
|
|
181
|
+
} else {
|
|
182
|
+
return isNowValid;
|
|
183
183
|
}
|
|
184
184
|
return m._isValid;
|
|
185
185
|
}
|
|
@@ -624,12 +624,56 @@
|
|
|
624
624
|
return isFunction(format) ? format(output) : format.replace(/%s/i, output);
|
|
625
625
|
}
|
|
626
626
|
|
|
627
|
-
var aliases = {
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
627
|
+
var aliases = {
|
|
628
|
+
D: 'date',
|
|
629
|
+
dates: 'date',
|
|
630
|
+
date: 'date',
|
|
631
|
+
d: 'day',
|
|
632
|
+
days: 'day',
|
|
633
|
+
day: 'day',
|
|
634
|
+
e: 'weekday',
|
|
635
|
+
weekdays: 'weekday',
|
|
636
|
+
weekday: 'weekday',
|
|
637
|
+
E: 'isoWeekday',
|
|
638
|
+
isoweekdays: 'isoWeekday',
|
|
639
|
+
isoweekday: 'isoWeekday',
|
|
640
|
+
DDD: 'dayOfYear',
|
|
641
|
+
dayofyears: 'dayOfYear',
|
|
642
|
+
dayofyear: 'dayOfYear',
|
|
643
|
+
h: 'hour',
|
|
644
|
+
hours: 'hour',
|
|
645
|
+
hour: 'hour',
|
|
646
|
+
ms: 'millisecond',
|
|
647
|
+
milliseconds: 'millisecond',
|
|
648
|
+
millisecond: 'millisecond',
|
|
649
|
+
m: 'minute',
|
|
650
|
+
minutes: 'minute',
|
|
651
|
+
minute: 'minute',
|
|
652
|
+
M: 'month',
|
|
653
|
+
months: 'month',
|
|
654
|
+
month: 'month',
|
|
655
|
+
Q: 'quarter',
|
|
656
|
+
quarters: 'quarter',
|
|
657
|
+
quarter: 'quarter',
|
|
658
|
+
s: 'second',
|
|
659
|
+
seconds: 'second',
|
|
660
|
+
second: 'second',
|
|
661
|
+
gg: 'weekYear',
|
|
662
|
+
weekyears: 'weekYear',
|
|
663
|
+
weekyear: 'weekYear',
|
|
664
|
+
GG: 'isoWeekYear',
|
|
665
|
+
isoweekyears: 'isoWeekYear',
|
|
666
|
+
isoweekyear: 'isoWeekYear',
|
|
667
|
+
w: 'week',
|
|
668
|
+
weeks: 'week',
|
|
669
|
+
week: 'week',
|
|
670
|
+
W: 'isoWeek',
|
|
671
|
+
isoweeks: 'isoWeek',
|
|
672
|
+
isoweek: 'isoWeek',
|
|
673
|
+
y: 'year',
|
|
674
|
+
years: 'year',
|
|
675
|
+
year: 'year',
|
|
676
|
+
};
|
|
633
677
|
|
|
634
678
|
function normalizeUnits(units) {
|
|
635
679
|
return typeof units === 'string'
|
|
@@ -654,11 +698,24 @@
|
|
|
654
698
|
return normalizedInput;
|
|
655
699
|
}
|
|
656
700
|
|
|
657
|
-
var priorities = {
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
701
|
+
var priorities = {
|
|
702
|
+
date: 9,
|
|
703
|
+
day: 11,
|
|
704
|
+
weekday: 11,
|
|
705
|
+
isoWeekday: 11,
|
|
706
|
+
dayOfYear: 4,
|
|
707
|
+
hour: 13,
|
|
708
|
+
millisecond: 16,
|
|
709
|
+
minute: 14,
|
|
710
|
+
month: 8,
|
|
711
|
+
quarter: 7,
|
|
712
|
+
second: 15,
|
|
713
|
+
weekYear: 1,
|
|
714
|
+
isoWeekYear: 1,
|
|
715
|
+
week: 5,
|
|
716
|
+
isoWeek: 5,
|
|
717
|
+
year: 1,
|
|
718
|
+
};
|
|
662
719
|
|
|
663
720
|
function getPrioritizedUnits(unitsObj) {
|
|
664
721
|
var units = [],
|
|
@@ -674,96 +731,6 @@
|
|
|
674
731
|
return units;
|
|
675
732
|
}
|
|
676
733
|
|
|
677
|
-
function isLeapYear(year) {
|
|
678
|
-
return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
function absFloor(number) {
|
|
682
|
-
if (number < 0) {
|
|
683
|
-
// -0 -> 0
|
|
684
|
-
return Math.ceil(number) || 0;
|
|
685
|
-
} else {
|
|
686
|
-
return Math.floor(number);
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
function toInt(argumentForCoercion) {
|
|
691
|
-
var coercedNumber = +argumentForCoercion,
|
|
692
|
-
value = 0;
|
|
693
|
-
|
|
694
|
-
if (coercedNumber !== 0 && isFinite(coercedNumber)) {
|
|
695
|
-
value = absFloor(coercedNumber);
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
return value;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
function makeGetSet(unit, keepTime) {
|
|
702
|
-
return function (value) {
|
|
703
|
-
if (value != null) {
|
|
704
|
-
set$1(this, unit, value);
|
|
705
|
-
hooks.updateOffset(this, keepTime);
|
|
706
|
-
return this;
|
|
707
|
-
} else {
|
|
708
|
-
return get(this, unit);
|
|
709
|
-
}
|
|
710
|
-
};
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
function get(mom, unit) {
|
|
714
|
-
return mom.isValid()
|
|
715
|
-
? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]()
|
|
716
|
-
: NaN;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
function set$1(mom, unit, value) {
|
|
720
|
-
if (mom.isValid() && !isNaN(value)) {
|
|
721
|
-
if (
|
|
722
|
-
unit === 'FullYear' &&
|
|
723
|
-
isLeapYear(mom.year()) &&
|
|
724
|
-
mom.month() === 1 &&
|
|
725
|
-
mom.date() === 29
|
|
726
|
-
) {
|
|
727
|
-
value = toInt(value);
|
|
728
|
-
mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](
|
|
729
|
-
value,
|
|
730
|
-
mom.month(),
|
|
731
|
-
daysInMonth(value, mom.month())
|
|
732
|
-
);
|
|
733
|
-
} else {
|
|
734
|
-
mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);
|
|
735
|
-
}
|
|
736
|
-
}
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
// MOMENTS
|
|
740
|
-
|
|
741
|
-
function stringGet(units) {
|
|
742
|
-
units = normalizeUnits(units);
|
|
743
|
-
if (isFunction(this[units])) {
|
|
744
|
-
return this[units]();
|
|
745
|
-
}
|
|
746
|
-
return this;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
function stringSet(units, value) {
|
|
750
|
-
if (typeof units === 'object') {
|
|
751
|
-
units = normalizeObjectUnits(units);
|
|
752
|
-
var prioritized = getPrioritizedUnits(units),
|
|
753
|
-
i,
|
|
754
|
-
prioritizedLen = prioritized.length;
|
|
755
|
-
for (i = 0; i < prioritizedLen; i++) {
|
|
756
|
-
this[prioritized[i].unit](units[prioritized[i].unit]);
|
|
757
|
-
}
|
|
758
|
-
} else {
|
|
759
|
-
units = normalizeUnits(units);
|
|
760
|
-
if (isFunction(this[units])) {
|
|
761
|
-
return this[units](value);
|
|
762
|
-
}
|
|
763
|
-
}
|
|
764
|
-
return this;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
734
|
var match1 = /\d/, // 0 - 9
|
|
768
735
|
match2 = /\d\d/, // 00 - 99
|
|
769
736
|
match3 = /\d{3}/, // 000 - 999
|
|
@@ -784,6 +751,8 @@
|
|
|
784
751
|
// includes scottish gaelic two word and hyphenated months
|
|
785
752
|
matchWord =
|
|
786
753
|
/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
|
754
|
+
match1to2NoLeadingZero = /^[1-9]\d?/, // 1-99
|
|
755
|
+
match1to2HasZero = /^([1-9]\d|\d)/, // 0-99
|
|
787
756
|
regexes;
|
|
788
757
|
|
|
789
758
|
regexes = {};
|
|
@@ -822,6 +791,26 @@
|
|
|
822
791
|
return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
|
|
823
792
|
}
|
|
824
793
|
|
|
794
|
+
function absFloor(number) {
|
|
795
|
+
if (number < 0) {
|
|
796
|
+
// -0 -> 0
|
|
797
|
+
return Math.ceil(number) || 0;
|
|
798
|
+
} else {
|
|
799
|
+
return Math.floor(number);
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
function toInt(argumentForCoercion) {
|
|
804
|
+
var coercedNumber = +argumentForCoercion,
|
|
805
|
+
value = 0;
|
|
806
|
+
|
|
807
|
+
if (coercedNumber !== 0 && isFinite(coercedNumber)) {
|
|
808
|
+
value = absFloor(coercedNumber);
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
return value;
|
|
812
|
+
}
|
|
813
|
+
|
|
825
814
|
var tokens = {};
|
|
826
815
|
|
|
827
816
|
function addParseToken(token, callback) {
|
|
@@ -855,6 +844,10 @@
|
|
|
855
844
|
}
|
|
856
845
|
}
|
|
857
846
|
|
|
847
|
+
function isLeapYear(year) {
|
|
848
|
+
return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
|
|
849
|
+
}
|
|
850
|
+
|
|
858
851
|
var YEAR = 0,
|
|
859
852
|
MONTH = 1,
|
|
860
853
|
DATE = 2,
|
|
@@ -865,6 +858,173 @@
|
|
|
865
858
|
WEEK = 7,
|
|
866
859
|
WEEKDAY = 8;
|
|
867
860
|
|
|
861
|
+
// FORMATTING
|
|
862
|
+
|
|
863
|
+
addFormatToken('Y', 0, 0, function () {
|
|
864
|
+
var y = this.year();
|
|
865
|
+
return y <= 9999 ? zeroFill(y, 4) : '+' + y;
|
|
866
|
+
});
|
|
867
|
+
|
|
868
|
+
addFormatToken(0, ['YY', 2], 0, function () {
|
|
869
|
+
return this.year() % 100;
|
|
870
|
+
});
|
|
871
|
+
|
|
872
|
+
addFormatToken(0, ['YYYY', 4], 0, 'year');
|
|
873
|
+
addFormatToken(0, ['YYYYY', 5], 0, 'year');
|
|
874
|
+
addFormatToken(0, ['YYYYYY', 6, true], 0, 'year');
|
|
875
|
+
|
|
876
|
+
// PARSING
|
|
877
|
+
|
|
878
|
+
addRegexToken('Y', matchSigned);
|
|
879
|
+
addRegexToken('YY', match1to2, match2);
|
|
880
|
+
addRegexToken('YYYY', match1to4, match4);
|
|
881
|
+
addRegexToken('YYYYY', match1to6, match6);
|
|
882
|
+
addRegexToken('YYYYYY', match1to6, match6);
|
|
883
|
+
|
|
884
|
+
addParseToken(['YYYYY', 'YYYYYY'], YEAR);
|
|
885
|
+
addParseToken('YYYY', function (input, array) {
|
|
886
|
+
array[YEAR] =
|
|
887
|
+
input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
|
|
888
|
+
});
|
|
889
|
+
addParseToken('YY', function (input, array) {
|
|
890
|
+
array[YEAR] = hooks.parseTwoDigitYear(input);
|
|
891
|
+
});
|
|
892
|
+
addParseToken('Y', function (input, array) {
|
|
893
|
+
array[YEAR] = parseInt(input, 10);
|
|
894
|
+
});
|
|
895
|
+
|
|
896
|
+
// HELPERS
|
|
897
|
+
|
|
898
|
+
function daysInYear(year) {
|
|
899
|
+
return isLeapYear(year) ? 366 : 365;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
// HOOKS
|
|
903
|
+
|
|
904
|
+
hooks.parseTwoDigitYear = function (input) {
|
|
905
|
+
return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
|
|
906
|
+
};
|
|
907
|
+
|
|
908
|
+
// MOMENTS
|
|
909
|
+
|
|
910
|
+
var getSetYear = makeGetSet('FullYear', true);
|
|
911
|
+
|
|
912
|
+
function getIsLeapYear() {
|
|
913
|
+
return isLeapYear(this.year());
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
function makeGetSet(unit, keepTime) {
|
|
917
|
+
return function (value) {
|
|
918
|
+
if (value != null) {
|
|
919
|
+
set$1(this, unit, value);
|
|
920
|
+
hooks.updateOffset(this, keepTime);
|
|
921
|
+
return this;
|
|
922
|
+
} else {
|
|
923
|
+
return get(this, unit);
|
|
924
|
+
}
|
|
925
|
+
};
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
function get(mom, unit) {
|
|
929
|
+
if (!mom.isValid()) {
|
|
930
|
+
return NaN;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
var d = mom._d,
|
|
934
|
+
isUTC = mom._isUTC;
|
|
935
|
+
|
|
936
|
+
switch (unit) {
|
|
937
|
+
case 'Milliseconds':
|
|
938
|
+
return isUTC ? d.getUTCMilliseconds() : d.getMilliseconds();
|
|
939
|
+
case 'Seconds':
|
|
940
|
+
return isUTC ? d.getUTCSeconds() : d.getSeconds();
|
|
941
|
+
case 'Minutes':
|
|
942
|
+
return isUTC ? d.getUTCMinutes() : d.getMinutes();
|
|
943
|
+
case 'Hours':
|
|
944
|
+
return isUTC ? d.getUTCHours() : d.getHours();
|
|
945
|
+
case 'Date':
|
|
946
|
+
return isUTC ? d.getUTCDate() : d.getDate();
|
|
947
|
+
case 'Day':
|
|
948
|
+
return isUTC ? d.getUTCDay() : d.getDay();
|
|
949
|
+
case 'Month':
|
|
950
|
+
return isUTC ? d.getUTCMonth() : d.getMonth();
|
|
951
|
+
case 'FullYear':
|
|
952
|
+
return isUTC ? d.getUTCFullYear() : d.getFullYear();
|
|
953
|
+
default:
|
|
954
|
+
return NaN; // Just in case
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
function set$1(mom, unit, value) {
|
|
959
|
+
var d, isUTC, year, month, date;
|
|
960
|
+
|
|
961
|
+
if (!mom.isValid() || isNaN(value)) {
|
|
962
|
+
return;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
d = mom._d;
|
|
966
|
+
isUTC = mom._isUTC;
|
|
967
|
+
|
|
968
|
+
switch (unit) {
|
|
969
|
+
case 'Milliseconds':
|
|
970
|
+
return void (isUTC
|
|
971
|
+
? d.setUTCMilliseconds(value)
|
|
972
|
+
: d.setMilliseconds(value));
|
|
973
|
+
case 'Seconds':
|
|
974
|
+
return void (isUTC ? d.setUTCSeconds(value) : d.setSeconds(value));
|
|
975
|
+
case 'Minutes':
|
|
976
|
+
return void (isUTC ? d.setUTCMinutes(value) : d.setMinutes(value));
|
|
977
|
+
case 'Hours':
|
|
978
|
+
return void (isUTC ? d.setUTCHours(value) : d.setHours(value));
|
|
979
|
+
case 'Date':
|
|
980
|
+
return void (isUTC ? d.setUTCDate(value) : d.setDate(value));
|
|
981
|
+
// case 'Day': // Not real
|
|
982
|
+
// return void (isUTC ? d.setUTCDay(value) : d.setDay(value));
|
|
983
|
+
// case 'Month': // Not used because we need to pass two variables
|
|
984
|
+
// return void (isUTC ? d.setUTCMonth(value) : d.setMonth(value));
|
|
985
|
+
case 'FullYear':
|
|
986
|
+
break; // See below ...
|
|
987
|
+
default:
|
|
988
|
+
return; // Just in case
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
year = value;
|
|
992
|
+
month = mom.month();
|
|
993
|
+
date = mom.date();
|
|
994
|
+
date = date === 29 && month === 1 && !isLeapYear(year) ? 28 : date;
|
|
995
|
+
void (isUTC
|
|
996
|
+
? d.setUTCFullYear(year, month, date)
|
|
997
|
+
: d.setFullYear(year, month, date));
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
// MOMENTS
|
|
1001
|
+
|
|
1002
|
+
function stringGet(units) {
|
|
1003
|
+
units = normalizeUnits(units);
|
|
1004
|
+
if (isFunction(this[units])) {
|
|
1005
|
+
return this[units]();
|
|
1006
|
+
}
|
|
1007
|
+
return this;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
function stringSet(units, value) {
|
|
1011
|
+
if (typeof units === 'object') {
|
|
1012
|
+
units = normalizeObjectUnits(units);
|
|
1013
|
+
var prioritized = getPrioritizedUnits(units),
|
|
1014
|
+
i,
|
|
1015
|
+
prioritizedLen = prioritized.length;
|
|
1016
|
+
for (i = 0; i < prioritizedLen; i++) {
|
|
1017
|
+
this[prioritized[i].unit](units[prioritized[i].unit]);
|
|
1018
|
+
}
|
|
1019
|
+
} else {
|
|
1020
|
+
units = normalizeUnits(units);
|
|
1021
|
+
if (isFunction(this[units])) {
|
|
1022
|
+
return this[units](value);
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
return this;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
868
1028
|
function mod(n, x) {
|
|
869
1029
|
return ((n % x) + x) % x;
|
|
870
1030
|
}
|
|
@@ -913,17 +1073,9 @@
|
|
|
913
1073
|
return this.localeData().months(this, format);
|
|
914
1074
|
});
|
|
915
1075
|
|
|
916
|
-
// ALIASES
|
|
917
|
-
|
|
918
|
-
addUnitAlias('month', 'M');
|
|
919
|
-
|
|
920
|
-
// PRIORITY
|
|
921
|
-
|
|
922
|
-
addUnitPriority('month', 8);
|
|
923
|
-
|
|
924
1076
|
// PARSING
|
|
925
1077
|
|
|
926
|
-
addRegexToken('M', match1to2);
|
|
1078
|
+
addRegexToken('M', match1to2, match1to2NoLeadingZero);
|
|
927
1079
|
addRegexToken('MM', match1to2, match2);
|
|
928
1080
|
addRegexToken('MMM', function (isStrict, locale) {
|
|
929
1081
|
return locale.monthsShortRegex(isStrict);
|
|
@@ -1089,8 +1241,6 @@
|
|
|
1089
1241
|
// MOMENTS
|
|
1090
1242
|
|
|
1091
1243
|
function setMonth(mom, value) {
|
|
1092
|
-
var dayOfMonth;
|
|
1093
|
-
|
|
1094
1244
|
if (!mom.isValid()) {
|
|
1095
1245
|
// No op
|
|
1096
1246
|
return mom;
|
|
@@ -1108,8 +1258,13 @@
|
|
|
1108
1258
|
}
|
|
1109
1259
|
}
|
|
1110
1260
|
|
|
1111
|
-
|
|
1112
|
-
|
|
1261
|
+
var month = value,
|
|
1262
|
+
date = mom.date();
|
|
1263
|
+
|
|
1264
|
+
date = date < 29 ? date : Math.min(date, daysInMonth(mom.year(), month));
|
|
1265
|
+
void (mom._isUTC
|
|
1266
|
+
? mom._d.setUTCMonth(month, date)
|
|
1267
|
+
: mom._d.setMonth(month, date));
|
|
1113
1268
|
return mom;
|
|
1114
1269
|
}
|
|
1115
1270
|
|
|
@@ -1176,27 +1331,24 @@
|
|
|
1176
1331
|
longPieces = [],
|
|
1177
1332
|
mixedPieces = [],
|
|
1178
1333
|
i,
|
|
1179
|
-
mom
|
|
1334
|
+
mom,
|
|
1335
|
+
shortP,
|
|
1336
|
+
longP;
|
|
1180
1337
|
for (i = 0; i < 12; i++) {
|
|
1181
1338
|
// make the regex if we don't have it already
|
|
1182
1339
|
mom = createUTC([2000, i]);
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1340
|
+
shortP = regexEscape(this.monthsShort(mom, ''));
|
|
1341
|
+
longP = regexEscape(this.months(mom, ''));
|
|
1342
|
+
shortPieces.push(shortP);
|
|
1343
|
+
longPieces.push(longP);
|
|
1344
|
+
mixedPieces.push(longP);
|
|
1345
|
+
mixedPieces.push(shortP);
|
|
1187
1346
|
}
|
|
1188
1347
|
// Sorting makes sure if one month (or abbr) is a prefix of another it
|
|
1189
1348
|
// will match the longer piece.
|
|
1190
1349
|
shortPieces.sort(cmpLenRev);
|
|
1191
1350
|
longPieces.sort(cmpLenRev);
|
|
1192
1351
|
mixedPieces.sort(cmpLenRev);
|
|
1193
|
-
for (i = 0; i < 12; i++) {
|
|
1194
|
-
shortPieces[i] = regexEscape(shortPieces[i]);
|
|
1195
|
-
longPieces[i] = regexEscape(longPieces[i]);
|
|
1196
|
-
}
|
|
1197
|
-
for (i = 0; i < 24; i++) {
|
|
1198
|
-
mixedPieces[i] = regexEscape(mixedPieces[i]);
|
|
1199
|
-
}
|
|
1200
1352
|
|
|
1201
1353
|
this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
|
|
1202
1354
|
this._monthsShortRegex = this._monthsRegex;
|
|
@@ -1210,69 +1362,6 @@
|
|
|
1210
1362
|
);
|
|
1211
1363
|
}
|
|
1212
1364
|
|
|
1213
|
-
// FORMATTING
|
|
1214
|
-
|
|
1215
|
-
addFormatToken('Y', 0, 0, function () {
|
|
1216
|
-
var y = this.year();
|
|
1217
|
-
return y <= 9999 ? zeroFill(y, 4) : '+' + y;
|
|
1218
|
-
});
|
|
1219
|
-
|
|
1220
|
-
addFormatToken(0, ['YY', 2], 0, function () {
|
|
1221
|
-
return this.year() % 100;
|
|
1222
|
-
});
|
|
1223
|
-
|
|
1224
|
-
addFormatToken(0, ['YYYY', 4], 0, 'year');
|
|
1225
|
-
addFormatToken(0, ['YYYYY', 5], 0, 'year');
|
|
1226
|
-
addFormatToken(0, ['YYYYYY', 6, true], 0, 'year');
|
|
1227
|
-
|
|
1228
|
-
// ALIASES
|
|
1229
|
-
|
|
1230
|
-
addUnitAlias('year', 'y');
|
|
1231
|
-
|
|
1232
|
-
// PRIORITIES
|
|
1233
|
-
|
|
1234
|
-
addUnitPriority('year', 1);
|
|
1235
|
-
|
|
1236
|
-
// PARSING
|
|
1237
|
-
|
|
1238
|
-
addRegexToken('Y', matchSigned);
|
|
1239
|
-
addRegexToken('YY', match1to2, match2);
|
|
1240
|
-
addRegexToken('YYYY', match1to4, match4);
|
|
1241
|
-
addRegexToken('YYYYY', match1to6, match6);
|
|
1242
|
-
addRegexToken('YYYYYY', match1to6, match6);
|
|
1243
|
-
|
|
1244
|
-
addParseToken(['YYYYY', 'YYYYYY'], YEAR);
|
|
1245
|
-
addParseToken('YYYY', function (input, array) {
|
|
1246
|
-
array[YEAR] =
|
|
1247
|
-
input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
|
|
1248
|
-
});
|
|
1249
|
-
addParseToken('YY', function (input, array) {
|
|
1250
|
-
array[YEAR] = hooks.parseTwoDigitYear(input);
|
|
1251
|
-
});
|
|
1252
|
-
addParseToken('Y', function (input, array) {
|
|
1253
|
-
array[YEAR] = parseInt(input, 10);
|
|
1254
|
-
});
|
|
1255
|
-
|
|
1256
|
-
// HELPERS
|
|
1257
|
-
|
|
1258
|
-
function daysInYear(year) {
|
|
1259
|
-
return isLeapYear(year) ? 366 : 365;
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
// HOOKS
|
|
1263
|
-
|
|
1264
|
-
hooks.parseTwoDigitYear = function (input) {
|
|
1265
|
-
return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
|
|
1266
|
-
};
|
|
1267
|
-
|
|
1268
|
-
// MOMENTS
|
|
1269
|
-
|
|
1270
|
-
var getSetYear = makeGetSet('FullYear', true);
|
|
1271
|
-
|
|
1272
|
-
function getIsLeapYear() {
|
|
1273
|
-
return isLeapYear(this.year());
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
1365
|
function createDate(y, m, d, h, M, s, ms) {
|
|
1277
1366
|
// can't just apply() to create a date:
|
|
1278
1367
|
// https://stackoverflow.com/q/181348
|
|
@@ -1378,21 +1467,11 @@
|
|
|
1378
1467
|
addFormatToken('w', ['ww', 2], 'wo', 'week');
|
|
1379
1468
|
addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek');
|
|
1380
1469
|
|
|
1381
|
-
// ALIASES
|
|
1382
|
-
|
|
1383
|
-
addUnitAlias('week', 'w');
|
|
1384
|
-
addUnitAlias('isoWeek', 'W');
|
|
1385
|
-
|
|
1386
|
-
// PRIORITIES
|
|
1387
|
-
|
|
1388
|
-
addUnitPriority('week', 5);
|
|
1389
|
-
addUnitPriority('isoWeek', 5);
|
|
1390
|
-
|
|
1391
1470
|
// PARSING
|
|
1392
1471
|
|
|
1393
|
-
addRegexToken('w', match1to2);
|
|
1472
|
+
addRegexToken('w', match1to2, match1to2NoLeadingZero);
|
|
1394
1473
|
addRegexToken('ww', match1to2, match2);
|
|
1395
|
-
addRegexToken('W', match1to2);
|
|
1474
|
+
addRegexToken('W', match1to2, match1to2NoLeadingZero);
|
|
1396
1475
|
addRegexToken('WW', match1to2, match2);
|
|
1397
1476
|
|
|
1398
1477
|
addWeekParseToken(
|
|
@@ -1454,17 +1533,6 @@
|
|
|
1454
1533
|
addFormatToken('e', 0, 0, 'weekday');
|
|
1455
1534
|
addFormatToken('E', 0, 0, 'isoWeekday');
|
|
1456
1535
|
|
|
1457
|
-
// ALIASES
|
|
1458
|
-
|
|
1459
|
-
addUnitAlias('day', 'd');
|
|
1460
|
-
addUnitAlias('weekday', 'e');
|
|
1461
|
-
addUnitAlias('isoWeekday', 'E');
|
|
1462
|
-
|
|
1463
|
-
// PRIORITY
|
|
1464
|
-
addUnitPriority('day', 11);
|
|
1465
|
-
addUnitPriority('weekday', 11);
|
|
1466
|
-
addUnitPriority('isoWeekday', 11);
|
|
1467
|
-
|
|
1468
1536
|
// PARSING
|
|
1469
1537
|
|
|
1470
1538
|
addRegexToken('d', match1to2);
|
|
@@ -1544,24 +1612,24 @@
|
|
|
1544
1612
|
return m === true
|
|
1545
1613
|
? shiftWeekdays(weekdays, this._week.dow)
|
|
1546
1614
|
: m
|
|
1547
|
-
|
|
1548
|
-
|
|
1615
|
+
? weekdays[m.day()]
|
|
1616
|
+
: weekdays;
|
|
1549
1617
|
}
|
|
1550
1618
|
|
|
1551
1619
|
function localeWeekdaysShort(m) {
|
|
1552
1620
|
return m === true
|
|
1553
1621
|
? shiftWeekdays(this._weekdaysShort, this._week.dow)
|
|
1554
1622
|
: m
|
|
1555
|
-
|
|
1556
|
-
|
|
1623
|
+
? this._weekdaysShort[m.day()]
|
|
1624
|
+
: this._weekdaysShort;
|
|
1557
1625
|
}
|
|
1558
1626
|
|
|
1559
1627
|
function localeWeekdaysMin(m) {
|
|
1560
1628
|
return m === true
|
|
1561
1629
|
? shiftWeekdays(this._weekdaysMin, this._week.dow)
|
|
1562
1630
|
: m
|
|
1563
|
-
|
|
1564
|
-
|
|
1631
|
+
? this._weekdaysMin[m.day()]
|
|
1632
|
+
: this._weekdaysMin;
|
|
1565
1633
|
}
|
|
1566
1634
|
|
|
1567
1635
|
function handleStrictParse$1(weekdayName, format, strict) {
|
|
@@ -1710,7 +1778,8 @@
|
|
|
1710
1778
|
if (!this.isValid()) {
|
|
1711
1779
|
return input != null ? this : NaN;
|
|
1712
1780
|
}
|
|
1713
|
-
|
|
1781
|
+
|
|
1782
|
+
var day = get(this, 'Day');
|
|
1714
1783
|
if (input != null) {
|
|
1715
1784
|
input = parseWeekday(input, this.localeData());
|
|
1716
1785
|
return this.add(input - day, 'd');
|
|
@@ -1909,13 +1978,6 @@
|
|
|
1909
1978
|
meridiem('a', true);
|
|
1910
1979
|
meridiem('A', false);
|
|
1911
1980
|
|
|
1912
|
-
// ALIASES
|
|
1913
|
-
|
|
1914
|
-
addUnitAlias('hour', 'h');
|
|
1915
|
-
|
|
1916
|
-
// PRIORITY
|
|
1917
|
-
addUnitPriority('hour', 13);
|
|
1918
|
-
|
|
1919
1981
|
// PARSING
|
|
1920
1982
|
|
|
1921
1983
|
function matchMeridiem(isStrict, locale) {
|
|
@@ -1924,9 +1986,9 @@
|
|
|
1924
1986
|
|
|
1925
1987
|
addRegexToken('a', matchMeridiem);
|
|
1926
1988
|
addRegexToken('A', matchMeridiem);
|
|
1927
|
-
addRegexToken('H', match1to2);
|
|
1928
|
-
addRegexToken('h', match1to2);
|
|
1929
|
-
addRegexToken('k', match1to2);
|
|
1989
|
+
addRegexToken('H', match1to2, match1to2HasZero);
|
|
1990
|
+
addRegexToken('h', match1to2, match1to2NoLeadingZero);
|
|
1991
|
+
addRegexToken('k', match1to2, match1to2NoLeadingZero);
|
|
1930
1992
|
addRegexToken('HH', match1to2, match2);
|
|
1931
1993
|
addRegexToken('hh', match1to2, match2);
|
|
1932
1994
|
addRegexToken('kk', match1to2, match2);
|
|
@@ -2076,7 +2138,8 @@
|
|
|
2076
2138
|
|
|
2077
2139
|
function isLocaleNameSane(name) {
|
|
2078
2140
|
// Prevent names that look like filesystem paths, i.e contain '/' or '\'
|
|
2079
|
-
|
|
2141
|
+
// Ensure name is available and function returns boolean
|
|
2142
|
+
return !!(name && name.match('^[^/\\\\]*$'));
|
|
2080
2143
|
}
|
|
2081
2144
|
|
|
2082
2145
|
function loadLocale(name) {
|
|
@@ -2268,21 +2331,21 @@
|
|
|
2268
2331
|
a[MONTH] < 0 || a[MONTH] > 11
|
|
2269
2332
|
? MONTH
|
|
2270
2333
|
: a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH])
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2334
|
+
? DATE
|
|
2335
|
+
: a[HOUR] < 0 ||
|
|
2336
|
+
a[HOUR] > 24 ||
|
|
2337
|
+
(a[HOUR] === 24 &&
|
|
2338
|
+
(a[MINUTE] !== 0 ||
|
|
2339
|
+
a[SECOND] !== 0 ||
|
|
2340
|
+
a[MILLISECOND] !== 0))
|
|
2341
|
+
? HOUR
|
|
2342
|
+
: a[MINUTE] < 0 || a[MINUTE] > 59
|
|
2343
|
+
? MINUTE
|
|
2344
|
+
: a[SECOND] < 0 || a[SECOND] > 59
|
|
2345
|
+
? SECOND
|
|
2346
|
+
: a[MILLISECOND] < 0 || a[MILLISECOND] > 999
|
|
2347
|
+
? MILLISECOND
|
|
2348
|
+
: -1;
|
|
2286
2349
|
|
|
2287
2350
|
if (
|
|
2288
2351
|
getParsingFlags(m)._overflowDayOfYear &&
|
|
@@ -3723,16 +3786,16 @@
|
|
|
3723
3786
|
return diff < -6
|
|
3724
3787
|
? 'sameElse'
|
|
3725
3788
|
: diff < -1
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3789
|
+
? 'lastWeek'
|
|
3790
|
+
: diff < 0
|
|
3791
|
+
? 'lastDay'
|
|
3792
|
+
: diff < 1
|
|
3793
|
+
? 'sameDay'
|
|
3794
|
+
: diff < 2
|
|
3795
|
+
? 'nextDay'
|
|
3796
|
+
: diff < 7
|
|
3797
|
+
? 'nextWeek'
|
|
3798
|
+
: 'sameElse';
|
|
3736
3799
|
}
|
|
3737
3800
|
|
|
3738
3801
|
function calendar$1(time, formats) {
|
|
@@ -4540,16 +4603,22 @@
|
|
|
4540
4603
|
mixedPieces = [],
|
|
4541
4604
|
i,
|
|
4542
4605
|
l,
|
|
4606
|
+
erasName,
|
|
4607
|
+
erasAbbr,
|
|
4608
|
+
erasNarrow,
|
|
4543
4609
|
eras = this.eras();
|
|
4544
4610
|
|
|
4545
4611
|
for (i = 0, l = eras.length; i < l; ++i) {
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4612
|
+
erasName = regexEscape(eras[i].name);
|
|
4613
|
+
erasAbbr = regexEscape(eras[i].abbr);
|
|
4614
|
+
erasNarrow = regexEscape(eras[i].narrow);
|
|
4549
4615
|
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4616
|
+
namePieces.push(erasName);
|
|
4617
|
+
abbrPieces.push(erasAbbr);
|
|
4618
|
+
narrowPieces.push(erasNarrow);
|
|
4619
|
+
mixedPieces.push(erasName);
|
|
4620
|
+
mixedPieces.push(erasAbbr);
|
|
4621
|
+
mixedPieces.push(erasNarrow);
|
|
4553
4622
|
}
|
|
4554
4623
|
|
|
4555
4624
|
this._erasRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
|
|
@@ -4582,14 +4651,6 @@
|
|
|
4582
4651
|
|
|
4583
4652
|
// ALIASES
|
|
4584
4653
|
|
|
4585
|
-
addUnitAlias('weekYear', 'gg');
|
|
4586
|
-
addUnitAlias('isoWeekYear', 'GG');
|
|
4587
|
-
|
|
4588
|
-
// PRIORITY
|
|
4589
|
-
|
|
4590
|
-
addUnitPriority('weekYear', 1);
|
|
4591
|
-
addUnitPriority('isoWeekYear', 1);
|
|
4592
|
-
|
|
4593
4654
|
// PARSING
|
|
4594
4655
|
|
|
4595
4656
|
addRegexToken('G', matchSigned);
|
|
@@ -4619,7 +4680,7 @@
|
|
|
4619
4680
|
this,
|
|
4620
4681
|
input,
|
|
4621
4682
|
this.week(),
|
|
4622
|
-
this.weekday(),
|
|
4683
|
+
this.weekday() + this.localeData()._week.dow,
|
|
4623
4684
|
this.localeData()._week.dow,
|
|
4624
4685
|
this.localeData()._week.doy
|
|
4625
4686
|
);
|
|
@@ -4681,14 +4742,6 @@
|
|
|
4681
4742
|
|
|
4682
4743
|
addFormatToken('Q', 0, 'Qo', 'quarter');
|
|
4683
4744
|
|
|
4684
|
-
// ALIASES
|
|
4685
|
-
|
|
4686
|
-
addUnitAlias('quarter', 'Q');
|
|
4687
|
-
|
|
4688
|
-
// PRIORITY
|
|
4689
|
-
|
|
4690
|
-
addUnitPriority('quarter', 7);
|
|
4691
|
-
|
|
4692
4745
|
// PARSING
|
|
4693
4746
|
|
|
4694
4747
|
addRegexToken('Q', match1);
|
|
@@ -4708,16 +4761,9 @@
|
|
|
4708
4761
|
|
|
4709
4762
|
addFormatToken('D', ['DD', 2], 'Do', 'date');
|
|
4710
4763
|
|
|
4711
|
-
// ALIASES
|
|
4712
|
-
|
|
4713
|
-
addUnitAlias('date', 'D');
|
|
4714
|
-
|
|
4715
|
-
// PRIORITY
|
|
4716
|
-
addUnitPriority('date', 9);
|
|
4717
|
-
|
|
4718
4764
|
// PARSING
|
|
4719
4765
|
|
|
4720
|
-
addRegexToken('D', match1to2);
|
|
4766
|
+
addRegexToken('D', match1to2, match1to2NoLeadingZero);
|
|
4721
4767
|
addRegexToken('DD', match1to2, match2);
|
|
4722
4768
|
addRegexToken('Do', function (isStrict, locale) {
|
|
4723
4769
|
// TODO: Remove "ordinalParse" fallback in next major release.
|
|
@@ -4739,13 +4785,6 @@
|
|
|
4739
4785
|
|
|
4740
4786
|
addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear');
|
|
4741
4787
|
|
|
4742
|
-
// ALIASES
|
|
4743
|
-
|
|
4744
|
-
addUnitAlias('dayOfYear', 'DDD');
|
|
4745
|
-
|
|
4746
|
-
// PRIORITY
|
|
4747
|
-
addUnitPriority('dayOfYear', 4);
|
|
4748
|
-
|
|
4749
4788
|
// PARSING
|
|
4750
4789
|
|
|
4751
4790
|
addRegexToken('DDD', match1to3);
|
|
@@ -4770,17 +4809,9 @@
|
|
|
4770
4809
|
|
|
4771
4810
|
addFormatToken('m', ['mm', 2], 0, 'minute');
|
|
4772
4811
|
|
|
4773
|
-
// ALIASES
|
|
4774
|
-
|
|
4775
|
-
addUnitAlias('minute', 'm');
|
|
4776
|
-
|
|
4777
|
-
// PRIORITY
|
|
4778
|
-
|
|
4779
|
-
addUnitPriority('minute', 14);
|
|
4780
|
-
|
|
4781
4812
|
// PARSING
|
|
4782
4813
|
|
|
4783
|
-
addRegexToken('m', match1to2);
|
|
4814
|
+
addRegexToken('m', match1to2, match1to2HasZero);
|
|
4784
4815
|
addRegexToken('mm', match1to2, match2);
|
|
4785
4816
|
addParseToken(['m', 'mm'], MINUTE);
|
|
4786
4817
|
|
|
@@ -4792,17 +4823,9 @@
|
|
|
4792
4823
|
|
|
4793
4824
|
addFormatToken('s', ['ss', 2], 0, 'second');
|
|
4794
4825
|
|
|
4795
|
-
// ALIASES
|
|
4796
|
-
|
|
4797
|
-
addUnitAlias('second', 's');
|
|
4798
|
-
|
|
4799
|
-
// PRIORITY
|
|
4800
|
-
|
|
4801
|
-
addUnitPriority('second', 15);
|
|
4802
|
-
|
|
4803
4826
|
// PARSING
|
|
4804
4827
|
|
|
4805
|
-
addRegexToken('s', match1to2);
|
|
4828
|
+
addRegexToken('s', match1to2, match1to2HasZero);
|
|
4806
4829
|
addRegexToken('ss', match1to2, match2);
|
|
4807
4830
|
addParseToken(['s', 'ss'], SECOND);
|
|
4808
4831
|
|
|
@@ -4840,14 +4863,6 @@
|
|
|
4840
4863
|
return this.millisecond() * 1000000;
|
|
4841
4864
|
});
|
|
4842
4865
|
|
|
4843
|
-
// ALIASES
|
|
4844
|
-
|
|
4845
|
-
addUnitAlias('millisecond', 'ms');
|
|
4846
|
-
|
|
4847
|
-
// PRIORITY
|
|
4848
|
-
|
|
4849
|
-
addUnitPriority('millisecond', 16);
|
|
4850
|
-
|
|
4851
4866
|
// PARSING
|
|
4852
4867
|
|
|
4853
4868
|
addRegexToken('S', match1to3, match1);
|
|
@@ -5155,12 +5170,12 @@
|
|
|
5155
5170
|
toInt((number % 100) / 10) === 1
|
|
5156
5171
|
? 'th'
|
|
5157
5172
|
: b === 1
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5173
|
+
? 'st'
|
|
5174
|
+
: b === 2
|
|
5175
|
+
? 'nd'
|
|
5176
|
+
: b === 3
|
|
5177
|
+
? 'rd'
|
|
5178
|
+
: 'th';
|
|
5164
5179
|
return number + output;
|
|
5165
5180
|
},
|
|
5166
5181
|
});
|
|
@@ -5333,19 +5348,6 @@
|
|
|
5333
5348
|
}
|
|
5334
5349
|
}
|
|
5335
5350
|
|
|
5336
|
-
// TODO: Use this.as('ms')?
|
|
5337
|
-
function valueOf$1() {
|
|
5338
|
-
if (!this.isValid()) {
|
|
5339
|
-
return NaN;
|
|
5340
|
-
}
|
|
5341
|
-
return (
|
|
5342
|
-
this._milliseconds +
|
|
5343
|
-
this._days * 864e5 +
|
|
5344
|
-
(this._months % 12) * 2592e6 +
|
|
5345
|
-
toInt(this._months / 12) * 31536e6
|
|
5346
|
-
);
|
|
5347
|
-
}
|
|
5348
|
-
|
|
5349
5351
|
function makeAs(alias) {
|
|
5350
5352
|
return function () {
|
|
5351
5353
|
return this.as(alias);
|
|
@@ -5360,7 +5362,8 @@
|
|
|
5360
5362
|
asWeeks = makeAs('w'),
|
|
5361
5363
|
asMonths = makeAs('M'),
|
|
5362
5364
|
asQuarters = makeAs('Q'),
|
|
5363
|
-
asYears = makeAs('y')
|
|
5365
|
+
asYears = makeAs('y'),
|
|
5366
|
+
valueOf$1 = asMilliseconds;
|
|
5364
5367
|
|
|
5365
5368
|
function clone$1() {
|
|
5366
5369
|
return createDuration(this);
|
|
@@ -5629,7 +5632,7 @@
|
|
|
5629
5632
|
|
|
5630
5633
|
//! moment.js
|
|
5631
5634
|
|
|
5632
|
-
hooks.version = '2.
|
|
5635
|
+
hooks.version = '2.30.1';
|
|
5633
5636
|
|
|
5634
5637
|
setHookCallback(createLocal);
|
|
5635
5638
|
|
|
@@ -5748,14 +5751,14 @@
|
|
|
5748
5751
|
return n === 0
|
|
5749
5752
|
? 0
|
|
5750
5753
|
: n === 1
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
-
|
|
5758
|
-
|
|
5754
|
+
? 1
|
|
5755
|
+
: n === 2
|
|
5756
|
+
? 2
|
|
5757
|
+
: n % 100 >= 3 && n % 100 <= 10
|
|
5758
|
+
? 3
|
|
5759
|
+
: n % 100 >= 11
|
|
5760
|
+
? 4
|
|
5761
|
+
: 5;
|
|
5759
5762
|
},
|
|
5760
5763
|
plurals = {
|
|
5761
5764
|
s: [
|
|
@@ -5961,14 +5964,14 @@
|
|
|
5961
5964
|
return n === 0
|
|
5962
5965
|
? 0
|
|
5963
5966
|
: n === 1
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
|
|
5967
|
+
? 1
|
|
5968
|
+
: n === 2
|
|
5969
|
+
? 2
|
|
5970
|
+
: n % 100 >= 3 && n % 100 <= 10
|
|
5971
|
+
? 3
|
|
5972
|
+
: n % 100 >= 11
|
|
5973
|
+
? 4
|
|
5974
|
+
: 5;
|
|
5972
5975
|
},
|
|
5973
5976
|
plurals$1 = {
|
|
5974
5977
|
s: [
|
|
@@ -6190,6 +6193,115 @@
|
|
|
6190
6193
|
'٠': '0',
|
|
6191
6194
|
};
|
|
6192
6195
|
|
|
6196
|
+
hooks.defineLocale('ar-ps', {
|
|
6197
|
+
months: 'كانون الثاني_شباط_آذار_نيسان_أيّار_حزيران_تمّوز_آب_أيلول_تشري الأوّل_تشرين الثاني_كانون الأوّل'.split(
|
|
6198
|
+
'_'
|
|
6199
|
+
),
|
|
6200
|
+
monthsShort:
|
|
6201
|
+
'ك٢_شباط_آذار_نيسان_أيّار_حزيران_تمّوز_آب_أيلول_ت١_ت٢_ك١'.split('_'),
|
|
6202
|
+
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
|
6203
|
+
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
|
6204
|
+
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
|
6205
|
+
weekdaysParseExact: true,
|
|
6206
|
+
longDateFormat: {
|
|
6207
|
+
LT: 'HH:mm',
|
|
6208
|
+
LTS: 'HH:mm:ss',
|
|
6209
|
+
L: 'DD/MM/YYYY',
|
|
6210
|
+
LL: 'D MMMM YYYY',
|
|
6211
|
+
LLL: 'D MMMM YYYY HH:mm',
|
|
6212
|
+
LLLL: 'dddd D MMMM YYYY HH:mm',
|
|
6213
|
+
},
|
|
6214
|
+
meridiemParse: /ص|م/,
|
|
6215
|
+
isPM: function (input) {
|
|
6216
|
+
return 'م' === input;
|
|
6217
|
+
},
|
|
6218
|
+
meridiem: function (hour, minute, isLower) {
|
|
6219
|
+
if (hour < 12) {
|
|
6220
|
+
return 'ص';
|
|
6221
|
+
} else {
|
|
6222
|
+
return 'م';
|
|
6223
|
+
}
|
|
6224
|
+
},
|
|
6225
|
+
calendar: {
|
|
6226
|
+
sameDay: '[اليوم على الساعة] LT',
|
|
6227
|
+
nextDay: '[غدا على الساعة] LT',
|
|
6228
|
+
nextWeek: 'dddd [على الساعة] LT',
|
|
6229
|
+
lastDay: '[أمس على الساعة] LT',
|
|
6230
|
+
lastWeek: 'dddd [على الساعة] LT',
|
|
6231
|
+
sameElse: 'L',
|
|
6232
|
+
},
|
|
6233
|
+
relativeTime: {
|
|
6234
|
+
future: 'في %s',
|
|
6235
|
+
past: 'منذ %s',
|
|
6236
|
+
s: 'ثوان',
|
|
6237
|
+
ss: '%d ثانية',
|
|
6238
|
+
m: 'دقيقة',
|
|
6239
|
+
mm: '%d دقائق',
|
|
6240
|
+
h: 'ساعة',
|
|
6241
|
+
hh: '%d ساعات',
|
|
6242
|
+
d: 'يوم',
|
|
6243
|
+
dd: '%d أيام',
|
|
6244
|
+
M: 'شهر',
|
|
6245
|
+
MM: '%d أشهر',
|
|
6246
|
+
y: 'سنة',
|
|
6247
|
+
yy: '%d سنوات',
|
|
6248
|
+
},
|
|
6249
|
+
preparse: function (string) {
|
|
6250
|
+
return string
|
|
6251
|
+
.replace(/[٣٤٥٦٧٨٩٠]/g, function (match) {
|
|
6252
|
+
return numberMap[match];
|
|
6253
|
+
})
|
|
6254
|
+
.split('') // reversed since negative lookbehind not supported everywhere
|
|
6255
|
+
.reverse()
|
|
6256
|
+
.join('')
|
|
6257
|
+
.replace(/[١٢](?![\u062a\u0643])/g, function (match) {
|
|
6258
|
+
return numberMap[match];
|
|
6259
|
+
})
|
|
6260
|
+
.split('')
|
|
6261
|
+
.reverse()
|
|
6262
|
+
.join('')
|
|
6263
|
+
.replace(/،/g, ',');
|
|
6264
|
+
},
|
|
6265
|
+
postformat: function (string) {
|
|
6266
|
+
return string
|
|
6267
|
+
.replace(/\d/g, function (match) {
|
|
6268
|
+
return symbolMap$1[match];
|
|
6269
|
+
})
|
|
6270
|
+
.replace(/,/g, '،');
|
|
6271
|
+
},
|
|
6272
|
+
week: {
|
|
6273
|
+
dow: 0, // Sunday is the first day of the week.
|
|
6274
|
+
doy: 6, // The week that contains Jan 6th is the first week of the year.
|
|
6275
|
+
},
|
|
6276
|
+
});
|
|
6277
|
+
|
|
6278
|
+
//! moment.js locale configuration
|
|
6279
|
+
|
|
6280
|
+
var symbolMap$2 = {
|
|
6281
|
+
1: '١',
|
|
6282
|
+
2: '٢',
|
|
6283
|
+
3: '٣',
|
|
6284
|
+
4: '٤',
|
|
6285
|
+
5: '٥',
|
|
6286
|
+
6: '٦',
|
|
6287
|
+
7: '٧',
|
|
6288
|
+
8: '٨',
|
|
6289
|
+
9: '٩',
|
|
6290
|
+
0: '٠',
|
|
6291
|
+
},
|
|
6292
|
+
numberMap$1 = {
|
|
6293
|
+
'١': '1',
|
|
6294
|
+
'٢': '2',
|
|
6295
|
+
'٣': '3',
|
|
6296
|
+
'٤': '4',
|
|
6297
|
+
'٥': '5',
|
|
6298
|
+
'٦': '6',
|
|
6299
|
+
'٧': '7',
|
|
6300
|
+
'٨': '8',
|
|
6301
|
+
'٩': '9',
|
|
6302
|
+
'٠': '0',
|
|
6303
|
+
};
|
|
6304
|
+
|
|
6193
6305
|
hooks.defineLocale('ar-sa', {
|
|
6194
6306
|
months: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
|
6195
6307
|
'_'
|
|
@@ -6248,14 +6360,14 @@
|
|
|
6248
6360
|
preparse: function (string) {
|
|
6249
6361
|
return string
|
|
6250
6362
|
.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
|
|
6251
|
-
return numberMap[match];
|
|
6363
|
+
return numberMap$1[match];
|
|
6252
6364
|
})
|
|
6253
6365
|
.replace(/،/g, ',');
|
|
6254
6366
|
},
|
|
6255
6367
|
postformat: function (string) {
|
|
6256
6368
|
return string
|
|
6257
6369
|
.replace(/\d/g, function (match) {
|
|
6258
|
-
return symbolMap$
|
|
6370
|
+
return symbolMap$2[match];
|
|
6259
6371
|
})
|
|
6260
6372
|
.replace(/,/g, '،');
|
|
6261
6373
|
},
|
|
@@ -6319,7 +6431,7 @@
|
|
|
6319
6431
|
|
|
6320
6432
|
//! moment.js locale configuration
|
|
6321
6433
|
|
|
6322
|
-
var symbolMap$
|
|
6434
|
+
var symbolMap$3 = {
|
|
6323
6435
|
1: '١',
|
|
6324
6436
|
2: '٢',
|
|
6325
6437
|
3: '٣',
|
|
@@ -6331,7 +6443,7 @@
|
|
|
6331
6443
|
9: '٩',
|
|
6332
6444
|
0: '٠',
|
|
6333
6445
|
},
|
|
6334
|
-
numberMap$
|
|
6446
|
+
numberMap$2 = {
|
|
6335
6447
|
'١': '1',
|
|
6336
6448
|
'٢': '2',
|
|
6337
6449
|
'٣': '3',
|
|
@@ -6347,14 +6459,14 @@
|
|
|
6347
6459
|
return n === 0
|
|
6348
6460
|
? 0
|
|
6349
6461
|
: n === 1
|
|
6350
|
-
|
|
6351
|
-
|
|
6352
|
-
|
|
6353
|
-
|
|
6354
|
-
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
|
|
6462
|
+
? 1
|
|
6463
|
+
: n === 2
|
|
6464
|
+
? 2
|
|
6465
|
+
: n % 100 >= 3 && n % 100 <= 10
|
|
6466
|
+
? 3
|
|
6467
|
+
: n % 100 >= 11
|
|
6468
|
+
? 4
|
|
6469
|
+
: 5;
|
|
6358
6470
|
},
|
|
6359
6471
|
plurals$2 = {
|
|
6360
6472
|
s: [
|
|
@@ -6484,14 +6596,14 @@
|
|
|
6484
6596
|
preparse: function (string) {
|
|
6485
6597
|
return string
|
|
6486
6598
|
.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
|
|
6487
|
-
return numberMap$
|
|
6599
|
+
return numberMap$2[match];
|
|
6488
6600
|
})
|
|
6489
6601
|
.replace(/،/g, ',');
|
|
6490
6602
|
},
|
|
6491
6603
|
postformat: function (string) {
|
|
6492
6604
|
return string
|
|
6493
6605
|
.replace(/\d/g, function (match) {
|
|
6494
|
-
return symbolMap$
|
|
6606
|
+
return symbolMap$3[match];
|
|
6495
6607
|
})
|
|
6496
6608
|
.replace(/,/g, '،');
|
|
6497
6609
|
},
|
|
@@ -6607,8 +6719,8 @@
|
|
|
6607
6719
|
return num % 10 === 1 && num % 100 !== 11
|
|
6608
6720
|
? forms[0]
|
|
6609
6721
|
: num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
|
|
6610
|
-
|
|
6611
|
-
|
|
6722
|
+
? forms[1]
|
|
6723
|
+
: forms[2];
|
|
6612
6724
|
}
|
|
6613
6725
|
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
|
6614
6726
|
var format = {
|
|
@@ -6871,7 +6983,7 @@
|
|
|
6871
6983
|
|
|
6872
6984
|
//! moment.js locale configuration
|
|
6873
6985
|
|
|
6874
|
-
var symbolMap$
|
|
6986
|
+
var symbolMap$4 = {
|
|
6875
6987
|
1: '১',
|
|
6876
6988
|
2: '২',
|
|
6877
6989
|
3: '৩',
|
|
@@ -6883,7 +6995,7 @@
|
|
|
6883
6995
|
9: '৯',
|
|
6884
6996
|
0: '০',
|
|
6885
6997
|
},
|
|
6886
|
-
numberMap$
|
|
6998
|
+
numberMap$3 = {
|
|
6887
6999
|
'১': '1',
|
|
6888
7000
|
'২': '2',
|
|
6889
7001
|
'৩': '3',
|
|
@@ -6943,12 +7055,12 @@
|
|
|
6943
7055
|
},
|
|
6944
7056
|
preparse: function (string) {
|
|
6945
7057
|
return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
|
|
6946
|
-
return numberMap$
|
|
7058
|
+
return numberMap$3[match];
|
|
6947
7059
|
});
|
|
6948
7060
|
},
|
|
6949
7061
|
postformat: function (string) {
|
|
6950
7062
|
return string.replace(/\d/g, function (match) {
|
|
6951
|
-
return symbolMap$
|
|
7063
|
+
return symbolMap$4[match];
|
|
6952
7064
|
});
|
|
6953
7065
|
},
|
|
6954
7066
|
|
|
@@ -6997,7 +7109,7 @@
|
|
|
6997
7109
|
|
|
6998
7110
|
//! moment.js locale configuration
|
|
6999
7111
|
|
|
7000
|
-
var symbolMap$
|
|
7112
|
+
var symbolMap$5 = {
|
|
7001
7113
|
1: '১',
|
|
7002
7114
|
2: '২',
|
|
7003
7115
|
3: '৩',
|
|
@@ -7009,7 +7121,7 @@
|
|
|
7009
7121
|
9: '৯',
|
|
7010
7122
|
0: '০',
|
|
7011
7123
|
},
|
|
7012
|
-
numberMap$
|
|
7124
|
+
numberMap$4 = {
|
|
7013
7125
|
'১': '1',
|
|
7014
7126
|
'২': '2',
|
|
7015
7127
|
'৩': '3',
|
|
@@ -7069,12 +7181,12 @@
|
|
|
7069
7181
|
},
|
|
7070
7182
|
preparse: function (string) {
|
|
7071
7183
|
return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
|
|
7072
|
-
return numberMap$
|
|
7184
|
+
return numberMap$4[match];
|
|
7073
7185
|
});
|
|
7074
7186
|
},
|
|
7075
7187
|
postformat: function (string) {
|
|
7076
7188
|
return string.replace(/\d/g, function (match) {
|
|
7077
|
-
return symbolMap$
|
|
7189
|
+
return symbolMap$5[match];
|
|
7078
7190
|
});
|
|
7079
7191
|
},
|
|
7080
7192
|
meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,
|
|
@@ -7113,7 +7225,7 @@
|
|
|
7113
7225
|
|
|
7114
7226
|
//! moment.js locale configuration
|
|
7115
7227
|
|
|
7116
|
-
var symbolMap$
|
|
7228
|
+
var symbolMap$6 = {
|
|
7117
7229
|
1: '༡',
|
|
7118
7230
|
2: '༢',
|
|
7119
7231
|
3: '༣',
|
|
@@ -7125,7 +7237,7 @@
|
|
|
7125
7237
|
9: '༩',
|
|
7126
7238
|
0: '༠',
|
|
7127
7239
|
},
|
|
7128
|
-
numberMap$
|
|
7240
|
+
numberMap$5 = {
|
|
7129
7241
|
'༡': '1',
|
|
7130
7242
|
'༢': '2',
|
|
7131
7243
|
'༣': '3',
|
|
@@ -7190,12 +7302,12 @@
|
|
|
7190
7302
|
},
|
|
7191
7303
|
preparse: function (string) {
|
|
7192
7304
|
return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {
|
|
7193
|
-
return numberMap$
|
|
7305
|
+
return numberMap$5[match];
|
|
7194
7306
|
});
|
|
7195
7307
|
},
|
|
7196
7308
|
postformat: function (string) {
|
|
7197
7309
|
return string.replace(/\d/g, function (match) {
|
|
7198
|
-
return symbolMap$
|
|
7310
|
+
return symbolMap$6[match];
|
|
7199
7311
|
});
|
|
7200
7312
|
},
|
|
7201
7313
|
meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,
|
|
@@ -7399,6 +7511,17 @@
|
|
|
7399
7511
|
|
|
7400
7512
|
//! moment.js locale configuration
|
|
7401
7513
|
|
|
7514
|
+
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
|
7515
|
+
switch (key) {
|
|
7516
|
+
case 'm':
|
|
7517
|
+
return withoutSuffix
|
|
7518
|
+
? 'jedna minuta'
|
|
7519
|
+
: isFuture
|
|
7520
|
+
? 'jednu minutu'
|
|
7521
|
+
: 'jedne minute';
|
|
7522
|
+
}
|
|
7523
|
+
}
|
|
7524
|
+
|
|
7402
7525
|
function translate(number, withoutSuffix, key) {
|
|
7403
7526
|
var result = number + ' ';
|
|
7404
7527
|
switch (key) {
|
|
@@ -7411,8 +7534,6 @@
|
|
|
7411
7534
|
result += 'sekundi';
|
|
7412
7535
|
}
|
|
7413
7536
|
return result;
|
|
7414
|
-
case 'm':
|
|
7415
|
-
return withoutSuffix ? 'jedna minuta' : 'jedne minute';
|
|
7416
7537
|
case 'mm':
|
|
7417
7538
|
if (number === 1) {
|
|
7418
7539
|
result += 'minuta';
|
|
@@ -7423,7 +7544,7 @@
|
|
|
7423
7544
|
}
|
|
7424
7545
|
return result;
|
|
7425
7546
|
case 'h':
|
|
7426
|
-
return withoutSuffix ? 'jedan sat' : '
|
|
7547
|
+
return withoutSuffix ? 'jedan sat' : 'jedan sat';
|
|
7427
7548
|
case 'hh':
|
|
7428
7549
|
if (number === 1) {
|
|
7429
7550
|
result += 'sat';
|
|
@@ -7524,7 +7645,7 @@
|
|
|
7524
7645
|
past: 'prije %s',
|
|
7525
7646
|
s: 'par sekundi',
|
|
7526
7647
|
ss: translate,
|
|
7527
|
-
m:
|
|
7648
|
+
m: processRelativeTime,
|
|
7528
7649
|
mm: translate,
|
|
7529
7650
|
h: translate,
|
|
7530
7651
|
hh: translate,
|
|
@@ -7623,12 +7744,12 @@
|
|
|
7623
7744
|
number === 1
|
|
7624
7745
|
? 'r'
|
|
7625
7746
|
: number === 2
|
|
7626
|
-
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
|
|
7747
|
+
? 'n'
|
|
7748
|
+
: number === 3
|
|
7749
|
+
? 'r'
|
|
7750
|
+
: number === 4
|
|
7751
|
+
? 't'
|
|
7752
|
+
: 'è';
|
|
7632
7753
|
if (period === 'w' || period === 'W') {
|
|
7633
7754
|
output = 'a';
|
|
7634
7755
|
}
|
|
@@ -7643,13 +7764,14 @@
|
|
|
7643
7764
|
//! moment.js locale configuration
|
|
7644
7765
|
|
|
7645
7766
|
var months$4 = {
|
|
7646
|
-
format: 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
|
|
7647
|
-
'_'
|
|
7648
|
-
),
|
|
7649
7767
|
standalone:
|
|
7650
|
-
'
|
|
7768
|
+
'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
|
|
7651
7769
|
'_'
|
|
7652
7770
|
),
|
|
7771
|
+
format: 'ledna_února_března_dubna_května_června_července_srpna_září_října_listopadu_prosince'.split(
|
|
7772
|
+
'_'
|
|
7773
|
+
),
|
|
7774
|
+
isFormat: /DD?[o.]?(\[[^\[\]]*\]|\s)+MMMM/,
|
|
7653
7775
|
},
|
|
7654
7776
|
monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),
|
|
7655
7777
|
monthsParse$1 = [
|
|
@@ -7851,8 +7973,8 @@
|
|
|
7851
7973
|
var affix = /сехет$/i.exec(output)
|
|
7852
7974
|
? 'рен'
|
|
7853
7975
|
: /ҫул$/i.exec(output)
|
|
7854
|
-
|
|
7855
|
-
|
|
7976
|
+
? 'тан'
|
|
7977
|
+
: 'ран';
|
|
7856
7978
|
return output + affix;
|
|
7857
7979
|
},
|
|
7858
7980
|
past: '%s каялла',
|
|
@@ -8023,7 +8145,7 @@
|
|
|
8023
8145
|
|
|
8024
8146
|
//! moment.js locale configuration
|
|
8025
8147
|
|
|
8026
|
-
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
|
8148
|
+
function processRelativeTime$1(number, withoutSuffix, key, isFuture) {
|
|
8027
8149
|
var format = {
|
|
8028
8150
|
m: ['eine Minute', 'einer Minute'],
|
|
8029
8151
|
h: ['eine Stunde', 'einer Stunde'],
|
|
@@ -8073,18 +8195,18 @@
|
|
|
8073
8195
|
past: 'vor %s',
|
|
8074
8196
|
s: 'ein paar Sekunden',
|
|
8075
8197
|
ss: '%d Sekunden',
|
|
8076
|
-
m: processRelativeTime,
|
|
8198
|
+
m: processRelativeTime$1,
|
|
8077
8199
|
mm: '%d Minuten',
|
|
8078
|
-
h: processRelativeTime,
|
|
8200
|
+
h: processRelativeTime$1,
|
|
8079
8201
|
hh: '%d Stunden',
|
|
8080
|
-
d: processRelativeTime,
|
|
8081
|
-
dd: processRelativeTime,
|
|
8082
|
-
w: processRelativeTime,
|
|
8202
|
+
d: processRelativeTime$1,
|
|
8203
|
+
dd: processRelativeTime$1,
|
|
8204
|
+
w: processRelativeTime$1,
|
|
8083
8205
|
ww: '%d Wochen',
|
|
8084
|
-
M: processRelativeTime,
|
|
8085
|
-
MM: processRelativeTime,
|
|
8086
|
-
y: processRelativeTime,
|
|
8087
|
-
yy: processRelativeTime,
|
|
8206
|
+
M: processRelativeTime$1,
|
|
8207
|
+
MM: processRelativeTime$1,
|
|
8208
|
+
y: processRelativeTime$1,
|
|
8209
|
+
yy: processRelativeTime$1,
|
|
8088
8210
|
},
|
|
8089
8211
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
8090
8212
|
ordinal: '%d.',
|
|
@@ -8096,7 +8218,7 @@
|
|
|
8096
8218
|
|
|
8097
8219
|
//! moment.js locale configuration
|
|
8098
8220
|
|
|
8099
|
-
function processRelativeTime$
|
|
8221
|
+
function processRelativeTime$2(number, withoutSuffix, key, isFuture) {
|
|
8100
8222
|
var format = {
|
|
8101
8223
|
m: ['eine Minute', 'einer Minute'],
|
|
8102
8224
|
h: ['eine Stunde', 'einer Stunde'],
|
|
@@ -8146,18 +8268,18 @@
|
|
|
8146
8268
|
past: 'vor %s',
|
|
8147
8269
|
s: 'ein paar Sekunden',
|
|
8148
8270
|
ss: '%d Sekunden',
|
|
8149
|
-
m: processRelativeTime$
|
|
8271
|
+
m: processRelativeTime$2,
|
|
8150
8272
|
mm: '%d Minuten',
|
|
8151
|
-
h: processRelativeTime$
|
|
8273
|
+
h: processRelativeTime$2,
|
|
8152
8274
|
hh: '%d Stunden',
|
|
8153
|
-
d: processRelativeTime$
|
|
8154
|
-
dd: processRelativeTime$
|
|
8155
|
-
w: processRelativeTime$
|
|
8275
|
+
d: processRelativeTime$2,
|
|
8276
|
+
dd: processRelativeTime$2,
|
|
8277
|
+
w: processRelativeTime$2,
|
|
8156
8278
|
ww: '%d Wochen',
|
|
8157
|
-
M: processRelativeTime$
|
|
8158
|
-
MM: processRelativeTime$
|
|
8159
|
-
y: processRelativeTime$
|
|
8160
|
-
yy: processRelativeTime$
|
|
8279
|
+
M: processRelativeTime$2,
|
|
8280
|
+
MM: processRelativeTime$2,
|
|
8281
|
+
y: processRelativeTime$2,
|
|
8282
|
+
yy: processRelativeTime$2,
|
|
8161
8283
|
},
|
|
8162
8284
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
8163
8285
|
ordinal: '%d.',
|
|
@@ -8169,7 +8291,7 @@
|
|
|
8169
8291
|
|
|
8170
8292
|
//! moment.js locale configuration
|
|
8171
8293
|
|
|
8172
|
-
function processRelativeTime$
|
|
8294
|
+
function processRelativeTime$3(number, withoutSuffix, key, isFuture) {
|
|
8173
8295
|
var format = {
|
|
8174
8296
|
m: ['eine Minute', 'einer Minute'],
|
|
8175
8297
|
h: ['eine Stunde', 'einer Stunde'],
|
|
@@ -8219,18 +8341,18 @@
|
|
|
8219
8341
|
past: 'vor %s',
|
|
8220
8342
|
s: 'ein paar Sekunden',
|
|
8221
8343
|
ss: '%d Sekunden',
|
|
8222
|
-
m: processRelativeTime$
|
|
8344
|
+
m: processRelativeTime$3,
|
|
8223
8345
|
mm: '%d Minuten',
|
|
8224
|
-
h: processRelativeTime$
|
|
8346
|
+
h: processRelativeTime$3,
|
|
8225
8347
|
hh: '%d Stunden',
|
|
8226
|
-
d: processRelativeTime$
|
|
8227
|
-
dd: processRelativeTime$
|
|
8228
|
-
w: processRelativeTime$
|
|
8348
|
+
d: processRelativeTime$3,
|
|
8349
|
+
dd: processRelativeTime$3,
|
|
8350
|
+
w: processRelativeTime$3,
|
|
8229
8351
|
ww: '%d Wochen',
|
|
8230
|
-
M: processRelativeTime$
|
|
8231
|
-
MM: processRelativeTime$
|
|
8232
|
-
y: processRelativeTime$
|
|
8233
|
-
yy: processRelativeTime$
|
|
8352
|
+
M: processRelativeTime$3,
|
|
8353
|
+
MM: processRelativeTime$3,
|
|
8354
|
+
y: processRelativeTime$3,
|
|
8355
|
+
yy: processRelativeTime$3,
|
|
8234
8356
|
},
|
|
8235
8357
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
8236
8358
|
ordinal: '%d.',
|
|
@@ -8481,12 +8603,12 @@
|
|
|
8481
8603
|
~~((number % 100) / 10) === 1
|
|
8482
8604
|
? 'th'
|
|
8483
8605
|
: b === 1
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
|
|
8606
|
+
? 'st'
|
|
8607
|
+
: b === 2
|
|
8608
|
+
? 'nd'
|
|
8609
|
+
: b === 3
|
|
8610
|
+
? 'rd'
|
|
8611
|
+
: 'th';
|
|
8490
8612
|
return number + output;
|
|
8491
8613
|
},
|
|
8492
8614
|
week: {
|
|
@@ -8546,12 +8668,12 @@
|
|
|
8546
8668
|
~~((number % 100) / 10) === 1
|
|
8547
8669
|
? 'th'
|
|
8548
8670
|
: b === 1
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8671
|
+
? 'st'
|
|
8672
|
+
: b === 2
|
|
8673
|
+
? 'nd'
|
|
8674
|
+
: b === 3
|
|
8675
|
+
? 'rd'
|
|
8676
|
+
: 'th';
|
|
8555
8677
|
return number + output;
|
|
8556
8678
|
},
|
|
8557
8679
|
});
|
|
@@ -8607,12 +8729,12 @@
|
|
|
8607
8729
|
~~((number % 100) / 10) === 1
|
|
8608
8730
|
? 'th'
|
|
8609
8731
|
: b === 1
|
|
8610
|
-
|
|
8611
|
-
|
|
8612
|
-
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
|
|
8732
|
+
? 'st'
|
|
8733
|
+
: b === 2
|
|
8734
|
+
? 'nd'
|
|
8735
|
+
: b === 3
|
|
8736
|
+
? 'rd'
|
|
8737
|
+
: 'th';
|
|
8616
8738
|
return number + output;
|
|
8617
8739
|
},
|
|
8618
8740
|
week: {
|
|
@@ -8672,12 +8794,12 @@
|
|
|
8672
8794
|
~~((number % 100) / 10) === 1
|
|
8673
8795
|
? 'th'
|
|
8674
8796
|
: b === 1
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
|
|
8679
|
-
|
|
8680
|
-
|
|
8797
|
+
? 'st'
|
|
8798
|
+
: b === 2
|
|
8799
|
+
? 'nd'
|
|
8800
|
+
: b === 3
|
|
8801
|
+
? 'rd'
|
|
8802
|
+
: 'th';
|
|
8681
8803
|
return number + output;
|
|
8682
8804
|
},
|
|
8683
8805
|
week: {
|
|
@@ -8737,12 +8859,12 @@
|
|
|
8737
8859
|
~~((number % 100) / 10) === 1
|
|
8738
8860
|
? 'th'
|
|
8739
8861
|
: b === 1
|
|
8740
|
-
|
|
8741
|
-
|
|
8742
|
-
|
|
8743
|
-
|
|
8744
|
-
|
|
8745
|
-
|
|
8862
|
+
? 'st'
|
|
8863
|
+
: b === 2
|
|
8864
|
+
? 'nd'
|
|
8865
|
+
: b === 3
|
|
8866
|
+
? 'rd'
|
|
8867
|
+
: 'th';
|
|
8746
8868
|
return number + output;
|
|
8747
8869
|
},
|
|
8748
8870
|
});
|
|
@@ -8798,12 +8920,12 @@
|
|
|
8798
8920
|
~~((number % 100) / 10) === 1
|
|
8799
8921
|
? 'th'
|
|
8800
8922
|
: b === 1
|
|
8801
|
-
|
|
8802
|
-
|
|
8803
|
-
|
|
8804
|
-
|
|
8805
|
-
|
|
8806
|
-
|
|
8923
|
+
? 'st'
|
|
8924
|
+
: b === 2
|
|
8925
|
+
? 'nd'
|
|
8926
|
+
: b === 3
|
|
8927
|
+
? 'rd'
|
|
8928
|
+
: 'th';
|
|
8807
8929
|
return number + output;
|
|
8808
8930
|
},
|
|
8809
8931
|
week: {
|
|
@@ -8863,12 +8985,12 @@
|
|
|
8863
8985
|
~~((number % 100) / 10) === 1
|
|
8864
8986
|
? 'th'
|
|
8865
8987
|
: b === 1
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
|
|
8871
|
-
|
|
8988
|
+
? 'st'
|
|
8989
|
+
: b === 2
|
|
8990
|
+
? 'nd'
|
|
8991
|
+
: b === 3
|
|
8992
|
+
? 'rd'
|
|
8993
|
+
: 'th';
|
|
8872
8994
|
return number + output;
|
|
8873
8995
|
},
|
|
8874
8996
|
week: {
|
|
@@ -8928,12 +9050,12 @@
|
|
|
8928
9050
|
~~((number % 100) / 10) === 1
|
|
8929
9051
|
? 'th'
|
|
8930
9052
|
: b === 1
|
|
8931
|
-
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
|
|
9053
|
+
? 'st'
|
|
9054
|
+
: b === 2
|
|
9055
|
+
? 'nd'
|
|
9056
|
+
: b === 3
|
|
9057
|
+
? 'rd'
|
|
9058
|
+
: 'th';
|
|
8937
9059
|
return number + output;
|
|
8938
9060
|
},
|
|
8939
9061
|
week: {
|
|
@@ -9432,7 +9554,7 @@
|
|
|
9432
9554
|
|
|
9433
9555
|
//! moment.js locale configuration
|
|
9434
9556
|
|
|
9435
|
-
function processRelativeTime$
|
|
9557
|
+
function processRelativeTime$4(number, withoutSuffix, key, isFuture) {
|
|
9436
9558
|
var format = {
|
|
9437
9559
|
s: ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
|
|
9438
9560
|
ss: [number + 'sekundi', number + 'sekundit'],
|
|
@@ -9483,18 +9605,18 @@
|
|
|
9483
9605
|
relativeTime: {
|
|
9484
9606
|
future: '%s pärast',
|
|
9485
9607
|
past: '%s tagasi',
|
|
9486
|
-
s: processRelativeTime$
|
|
9487
|
-
ss: processRelativeTime$
|
|
9488
|
-
m: processRelativeTime$
|
|
9489
|
-
mm: processRelativeTime$
|
|
9490
|
-
h: processRelativeTime$
|
|
9491
|
-
hh: processRelativeTime$
|
|
9492
|
-
d: processRelativeTime$
|
|
9608
|
+
s: processRelativeTime$4,
|
|
9609
|
+
ss: processRelativeTime$4,
|
|
9610
|
+
m: processRelativeTime$4,
|
|
9611
|
+
mm: processRelativeTime$4,
|
|
9612
|
+
h: processRelativeTime$4,
|
|
9613
|
+
hh: processRelativeTime$4,
|
|
9614
|
+
d: processRelativeTime$4,
|
|
9493
9615
|
dd: '%d päeva',
|
|
9494
|
-
M: processRelativeTime$
|
|
9495
|
-
MM: processRelativeTime$
|
|
9496
|
-
y: processRelativeTime$
|
|
9497
|
-
yy: processRelativeTime$
|
|
9616
|
+
M: processRelativeTime$4,
|
|
9617
|
+
MM: processRelativeTime$4,
|
|
9618
|
+
y: processRelativeTime$4,
|
|
9619
|
+
yy: processRelativeTime$4,
|
|
9498
9620
|
},
|
|
9499
9621
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
9500
9622
|
ordinal: '%d.',
|
|
@@ -9568,7 +9690,7 @@
|
|
|
9568
9690
|
|
|
9569
9691
|
//! moment.js locale configuration
|
|
9570
9692
|
|
|
9571
|
-
var symbolMap$
|
|
9693
|
+
var symbolMap$7 = {
|
|
9572
9694
|
1: '۱',
|
|
9573
9695
|
2: '۲',
|
|
9574
9696
|
3: '۳',
|
|
@@ -9580,7 +9702,7 @@
|
|
|
9580
9702
|
9: '۹',
|
|
9581
9703
|
0: '۰',
|
|
9582
9704
|
},
|
|
9583
|
-
numberMap$
|
|
9705
|
+
numberMap$6 = {
|
|
9584
9706
|
'۱': '1',
|
|
9585
9707
|
'۲': '2',
|
|
9586
9708
|
'۳': '3',
|
|
@@ -9657,14 +9779,14 @@
|
|
|
9657
9779
|
preparse: function (string) {
|
|
9658
9780
|
return string
|
|
9659
9781
|
.replace(/[۰-۹]/g, function (match) {
|
|
9660
|
-
return numberMap$
|
|
9782
|
+
return numberMap$6[match];
|
|
9661
9783
|
})
|
|
9662
9784
|
.replace(/،/g, ',');
|
|
9663
9785
|
},
|
|
9664
9786
|
postformat: function (string) {
|
|
9665
9787
|
return string
|
|
9666
9788
|
.replace(/\d/g, function (match) {
|
|
9667
|
-
return symbolMap$
|
|
9789
|
+
return symbolMap$7[match];
|
|
9668
9790
|
})
|
|
9669
9791
|
.replace(/,/g, '،');
|
|
9670
9792
|
},
|
|
@@ -10477,7 +10599,7 @@
|
|
|
10477
10599
|
|
|
10478
10600
|
//! moment.js locale configuration
|
|
10479
10601
|
|
|
10480
|
-
function processRelativeTime$
|
|
10602
|
+
function processRelativeTime$5(number, withoutSuffix, key, isFuture) {
|
|
10481
10603
|
var format = {
|
|
10482
10604
|
s: ['थोडया सॅकंडांनी', 'थोडे सॅकंड'],
|
|
10483
10605
|
ss: [number + ' सॅकंडांनी', number + ' सॅकंड'],
|
|
@@ -10535,18 +10657,18 @@
|
|
|
10535
10657
|
relativeTime: {
|
|
10536
10658
|
future: '%s',
|
|
10537
10659
|
past: '%s आदीं',
|
|
10538
|
-
s: processRelativeTime$
|
|
10539
|
-
ss: processRelativeTime$
|
|
10540
|
-
m: processRelativeTime$
|
|
10541
|
-
mm: processRelativeTime$
|
|
10542
|
-
h: processRelativeTime$
|
|
10543
|
-
hh: processRelativeTime$
|
|
10544
|
-
d: processRelativeTime$
|
|
10545
|
-
dd: processRelativeTime$
|
|
10546
|
-
M: processRelativeTime$
|
|
10547
|
-
MM: processRelativeTime$
|
|
10548
|
-
y: processRelativeTime$
|
|
10549
|
-
yy: processRelativeTime$
|
|
10660
|
+
s: processRelativeTime$5,
|
|
10661
|
+
ss: processRelativeTime$5,
|
|
10662
|
+
m: processRelativeTime$5,
|
|
10663
|
+
mm: processRelativeTime$5,
|
|
10664
|
+
h: processRelativeTime$5,
|
|
10665
|
+
hh: processRelativeTime$5,
|
|
10666
|
+
d: processRelativeTime$5,
|
|
10667
|
+
dd: processRelativeTime$5,
|
|
10668
|
+
M: processRelativeTime$5,
|
|
10669
|
+
MM: processRelativeTime$5,
|
|
10670
|
+
y: processRelativeTime$5,
|
|
10671
|
+
yy: processRelativeTime$5,
|
|
10550
10672
|
},
|
|
10551
10673
|
dayOfMonthOrdinalParse: /\d{1,2}(वेर)/,
|
|
10552
10674
|
ordinal: function (number, period) {
|
|
@@ -10600,7 +10722,7 @@
|
|
|
10600
10722
|
|
|
10601
10723
|
//! moment.js locale configuration
|
|
10602
10724
|
|
|
10603
|
-
function processRelativeTime$
|
|
10725
|
+
function processRelativeTime$6(number, withoutSuffix, key, isFuture) {
|
|
10604
10726
|
var format = {
|
|
10605
10727
|
s: ['thoddea sekondamni', 'thodde sekond'],
|
|
10606
10728
|
ss: [number + ' sekondamni', number + ' sekond'],
|
|
@@ -10656,18 +10778,18 @@
|
|
|
10656
10778
|
relativeTime: {
|
|
10657
10779
|
future: '%s',
|
|
10658
10780
|
past: '%s adim',
|
|
10659
|
-
s: processRelativeTime$
|
|
10660
|
-
ss: processRelativeTime$
|
|
10661
|
-
m: processRelativeTime$
|
|
10662
|
-
mm: processRelativeTime$
|
|
10663
|
-
h: processRelativeTime$
|
|
10664
|
-
hh: processRelativeTime$
|
|
10665
|
-
d: processRelativeTime$
|
|
10666
|
-
dd: processRelativeTime$
|
|
10667
|
-
M: processRelativeTime$
|
|
10668
|
-
MM: processRelativeTime$
|
|
10669
|
-
y: processRelativeTime$
|
|
10670
|
-
yy: processRelativeTime$
|
|
10781
|
+
s: processRelativeTime$6,
|
|
10782
|
+
ss: processRelativeTime$6,
|
|
10783
|
+
m: processRelativeTime$6,
|
|
10784
|
+
mm: processRelativeTime$6,
|
|
10785
|
+
h: processRelativeTime$6,
|
|
10786
|
+
hh: processRelativeTime$6,
|
|
10787
|
+
d: processRelativeTime$6,
|
|
10788
|
+
dd: processRelativeTime$6,
|
|
10789
|
+
M: processRelativeTime$6,
|
|
10790
|
+
MM: processRelativeTime$6,
|
|
10791
|
+
y: processRelativeTime$6,
|
|
10792
|
+
yy: processRelativeTime$6,
|
|
10671
10793
|
},
|
|
10672
10794
|
dayOfMonthOrdinalParse: /\d{1,2}(er)/,
|
|
10673
10795
|
ordinal: function (number, period) {
|
|
@@ -10721,7 +10843,7 @@
|
|
|
10721
10843
|
|
|
10722
10844
|
//! moment.js locale configuration
|
|
10723
10845
|
|
|
10724
|
-
var symbolMap$
|
|
10846
|
+
var symbolMap$8 = {
|
|
10725
10847
|
1: '૧',
|
|
10726
10848
|
2: '૨',
|
|
10727
10849
|
3: '૩',
|
|
@@ -10733,7 +10855,7 @@
|
|
|
10733
10855
|
9: '૯',
|
|
10734
10856
|
0: '૦',
|
|
10735
10857
|
},
|
|
10736
|
-
numberMap$
|
|
10858
|
+
numberMap$7 = {
|
|
10737
10859
|
'૧': '1',
|
|
10738
10860
|
'૨': '2',
|
|
10739
10861
|
'૩': '3',
|
|
@@ -10794,12 +10916,12 @@
|
|
|
10794
10916
|
},
|
|
10795
10917
|
preparse: function (string) {
|
|
10796
10918
|
return string.replace(/[૧૨૩૪૫૬૭૮૯૦]/g, function (match) {
|
|
10797
|
-
return numberMap$
|
|
10919
|
+
return numberMap$7[match];
|
|
10798
10920
|
});
|
|
10799
10921
|
},
|
|
10800
10922
|
postformat: function (string) {
|
|
10801
10923
|
return string.replace(/\d/g, function (match) {
|
|
10802
|
-
return symbolMap$
|
|
10924
|
+
return symbolMap$8[match];
|
|
10803
10925
|
});
|
|
10804
10926
|
},
|
|
10805
10927
|
// Gujarati notation for meridiems are quite fuzzy in practice. While there exists
|
|
@@ -10929,7 +11051,7 @@
|
|
|
10929
11051
|
|
|
10930
11052
|
//! moment.js locale configuration
|
|
10931
11053
|
|
|
10932
|
-
var symbolMap$
|
|
11054
|
+
var symbolMap$9 = {
|
|
10933
11055
|
1: '१',
|
|
10934
11056
|
2: '२',
|
|
10935
11057
|
3: '३',
|
|
@@ -10941,7 +11063,7 @@
|
|
|
10941
11063
|
9: '९',
|
|
10942
11064
|
0: '०',
|
|
10943
11065
|
},
|
|
10944
|
-
numberMap$
|
|
11066
|
+
numberMap$8 = {
|
|
10945
11067
|
'१': '1',
|
|
10946
11068
|
'२': '2',
|
|
10947
11069
|
'३': '3',
|
|
@@ -11048,12 +11170,12 @@
|
|
|
11048
11170
|
},
|
|
11049
11171
|
preparse: function (string) {
|
|
11050
11172
|
return string.replace(/[१२३४५६७८९०]/g, function (match) {
|
|
11051
|
-
return numberMap$
|
|
11173
|
+
return numberMap$8[match];
|
|
11052
11174
|
});
|
|
11053
11175
|
},
|
|
11054
11176
|
postformat: function (string) {
|
|
11055
11177
|
return string.replace(/\d/g, function (match) {
|
|
11056
|
-
return symbolMap$
|
|
11178
|
+
return symbolMap$9[match];
|
|
11057
11179
|
});
|
|
11058
11180
|
},
|
|
11059
11181
|
// Hindi notation for meridiems are quite fuzzy in practice. While there exists
|
|
@@ -11777,8 +11899,8 @@
|
|
|
11777
11899
|
(this.hours() > 1
|
|
11778
11900
|
? 'lle '
|
|
11779
11901
|
: this.hours() === 0
|
|
11780
|
-
|
|
11781
|
-
|
|
11902
|
+
? ' '
|
|
11903
|
+
: "ll'") +
|
|
11782
11904
|
']LT'
|
|
11783
11905
|
);
|
|
11784
11906
|
default:
|
|
@@ -11787,8 +11909,8 @@
|
|
|
11787
11909
|
(this.hours() > 1
|
|
11788
11910
|
? 'lle '
|
|
11789
11911
|
: this.hours() === 0
|
|
11790
|
-
|
|
11791
|
-
|
|
11912
|
+
? ' '
|
|
11913
|
+
: "ll'") +
|
|
11792
11914
|
']LT'
|
|
11793
11915
|
);
|
|
11794
11916
|
}
|
|
@@ -12208,7 +12330,7 @@
|
|
|
12208
12330
|
|
|
12209
12331
|
//! moment.js locale configuration
|
|
12210
12332
|
|
|
12211
|
-
var symbolMap$
|
|
12333
|
+
var symbolMap$a = {
|
|
12212
12334
|
1: '១',
|
|
12213
12335
|
2: '២',
|
|
12214
12336
|
3: '៣',
|
|
@@ -12220,7 +12342,7 @@
|
|
|
12220
12342
|
9: '៩',
|
|
12221
12343
|
0: '០',
|
|
12222
12344
|
},
|
|
12223
|
-
numberMap$
|
|
12345
|
+
numberMap$9 = {
|
|
12224
12346
|
'១': '1',
|
|
12225
12347
|
'២': '2',
|
|
12226
12348
|
'៣': '3',
|
|
@@ -12292,12 +12414,12 @@
|
|
|
12292
12414
|
ordinal: 'ទី%d',
|
|
12293
12415
|
preparse: function (string) {
|
|
12294
12416
|
return string.replace(/[១២៣៤៥៦៧៨៩០]/g, function (match) {
|
|
12295
|
-
return numberMap$
|
|
12417
|
+
return numberMap$9[match];
|
|
12296
12418
|
});
|
|
12297
12419
|
},
|
|
12298
12420
|
postformat: function (string) {
|
|
12299
12421
|
return string.replace(/\d/g, function (match) {
|
|
12300
|
-
return symbolMap$
|
|
12422
|
+
return symbolMap$a[match];
|
|
12301
12423
|
});
|
|
12302
12424
|
},
|
|
12303
12425
|
week: {
|
|
@@ -12308,7 +12430,7 @@
|
|
|
12308
12430
|
|
|
12309
12431
|
//! moment.js locale configuration
|
|
12310
12432
|
|
|
12311
|
-
var symbolMap$
|
|
12433
|
+
var symbolMap$b = {
|
|
12312
12434
|
1: '೧',
|
|
12313
12435
|
2: '೨',
|
|
12314
12436
|
3: '೩',
|
|
@@ -12320,7 +12442,7 @@
|
|
|
12320
12442
|
9: '೯',
|
|
12321
12443
|
0: '೦',
|
|
12322
12444
|
},
|
|
12323
|
-
numberMap$
|
|
12445
|
+
numberMap$a = {
|
|
12324
12446
|
'೧': '1',
|
|
12325
12447
|
'೨': '2',
|
|
12326
12448
|
'೩': '3',
|
|
@@ -12381,12 +12503,12 @@
|
|
|
12381
12503
|
},
|
|
12382
12504
|
preparse: function (string) {
|
|
12383
12505
|
return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {
|
|
12384
|
-
return numberMap$
|
|
12506
|
+
return numberMap$a[match];
|
|
12385
12507
|
});
|
|
12386
12508
|
},
|
|
12387
12509
|
postformat: function (string) {
|
|
12388
12510
|
return string.replace(/\d/g, function (match) {
|
|
12389
|
-
return symbolMap$
|
|
12511
|
+
return symbolMap$b[match];
|
|
12390
12512
|
});
|
|
12391
12513
|
},
|
|
12392
12514
|
meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,
|
|
@@ -12500,7 +12622,118 @@
|
|
|
12500
12622
|
|
|
12501
12623
|
//! moment.js locale configuration
|
|
12502
12624
|
|
|
12503
|
-
|
|
12625
|
+
function processRelativeTime$7(num, withoutSuffix, key, isFuture) {
|
|
12626
|
+
var format = {
|
|
12627
|
+
s: ['çend sanîye', 'çend sanîyeyan'],
|
|
12628
|
+
ss: [num + ' sanîye', num + ' sanîyeyan'],
|
|
12629
|
+
m: ['deqîqeyek', 'deqîqeyekê'],
|
|
12630
|
+
mm: [num + ' deqîqe', num + ' deqîqeyan'],
|
|
12631
|
+
h: ['saetek', 'saetekê'],
|
|
12632
|
+
hh: [num + ' saet', num + ' saetan'],
|
|
12633
|
+
d: ['rojek', 'rojekê'],
|
|
12634
|
+
dd: [num + ' roj', num + ' rojan'],
|
|
12635
|
+
w: ['hefteyek', 'hefteyekê'],
|
|
12636
|
+
ww: [num + ' hefte', num + ' hefteyan'],
|
|
12637
|
+
M: ['mehek', 'mehekê'],
|
|
12638
|
+
MM: [num + ' meh', num + ' mehan'],
|
|
12639
|
+
y: ['salek', 'salekê'],
|
|
12640
|
+
yy: [num + ' sal', num + ' salan'],
|
|
12641
|
+
};
|
|
12642
|
+
return withoutSuffix ? format[key][0] : format[key][1];
|
|
12643
|
+
}
|
|
12644
|
+
// function obliqueNumSuffix(num) {
|
|
12645
|
+
// if(num.includes(':'))
|
|
12646
|
+
// num = parseInt(num.split(':')[0]);
|
|
12647
|
+
// else
|
|
12648
|
+
// num = parseInt(num);
|
|
12649
|
+
// return num == 0 || num % 10 == 1 ? 'ê'
|
|
12650
|
+
// : (num > 10 && num % 10 == 0 ? 'î' : 'an');
|
|
12651
|
+
// }
|
|
12652
|
+
function ezafeNumSuffix(num) {
|
|
12653
|
+
num = '' + num;
|
|
12654
|
+
var l = num.substring(num.length - 1),
|
|
12655
|
+
ll = num.length > 1 ? num.substring(num.length - 2) : '';
|
|
12656
|
+
if (
|
|
12657
|
+
!(ll == 12 || ll == 13) &&
|
|
12658
|
+
(l == '2' || l == '3' || ll == '50' || l == '70' || l == '80')
|
|
12659
|
+
)
|
|
12660
|
+
return 'yê';
|
|
12661
|
+
return 'ê';
|
|
12662
|
+
}
|
|
12663
|
+
|
|
12664
|
+
hooks.defineLocale('ku-kmr', {
|
|
12665
|
+
// According to the spelling rules defined by the work group of Weqfa Mezopotamyayê (Mesopotamia Foundation)
|
|
12666
|
+
// this should be: 'Kanûna Paşîn_Sibat_Adar_Nîsan_Gulan_Hezîran_Tîrmeh_Tebax_Îlon_Çirîya Pêşîn_Çirîya Paşîn_Kanûna Pêşîn'
|
|
12667
|
+
// But the names below are more well known and handy
|
|
12668
|
+
months: 'Rêbendan_Sibat_Adar_Nîsan_Gulan_Hezîran_Tîrmeh_Tebax_Îlon_Cotmeh_Mijdar_Berfanbar'.split(
|
|
12669
|
+
'_'
|
|
12670
|
+
),
|
|
12671
|
+
monthsShort: 'Rêb_Sib_Ada_Nîs_Gul_Hez_Tîr_Teb_Îlo_Cot_Mij_Ber'.split('_'),
|
|
12672
|
+
monthsParseExact: true,
|
|
12673
|
+
weekdays: 'Yekşem_Duşem_Sêşem_Çarşem_Pêncşem_În_Şemî'.split('_'),
|
|
12674
|
+
weekdaysShort: 'Yek_Du_Sê_Çar_Pên_În_Şem'.split('_'),
|
|
12675
|
+
weekdaysMin: 'Ye_Du_Sê_Ça_Pê_În_Şe'.split('_'),
|
|
12676
|
+
meridiem: function (hours, minutes, isLower) {
|
|
12677
|
+
if (hours < 12) {
|
|
12678
|
+
return isLower ? 'bn' : 'BN';
|
|
12679
|
+
} else {
|
|
12680
|
+
return isLower ? 'pn' : 'PN';
|
|
12681
|
+
}
|
|
12682
|
+
},
|
|
12683
|
+
meridiemParse: /bn|BN|pn|PN/,
|
|
12684
|
+
longDateFormat: {
|
|
12685
|
+
LT: 'HH:mm',
|
|
12686
|
+
LTS: 'HH:mm:ss',
|
|
12687
|
+
L: 'DD.MM.YYYY',
|
|
12688
|
+
LL: 'Do MMMM[a] YYYY[an]',
|
|
12689
|
+
LLL: 'Do MMMM[a] YYYY[an] HH:mm',
|
|
12690
|
+
LLLL: 'dddd, Do MMMM[a] YYYY[an] HH:mm',
|
|
12691
|
+
ll: 'Do MMM[.] YYYY[an]',
|
|
12692
|
+
lll: 'Do MMM[.] YYYY[an] HH:mm',
|
|
12693
|
+
llll: 'ddd[.], Do MMM[.] YYYY[an] HH:mm',
|
|
12694
|
+
},
|
|
12695
|
+
calendar: {
|
|
12696
|
+
sameDay: '[Îro di saet] LT [de]',
|
|
12697
|
+
nextDay: '[Sibê di saet] LT [de]',
|
|
12698
|
+
nextWeek: 'dddd [di saet] LT [de]',
|
|
12699
|
+
lastDay: '[Duh di saet] LT [de]',
|
|
12700
|
+
lastWeek: 'dddd[a borî di saet] LT [de]',
|
|
12701
|
+
sameElse: 'L',
|
|
12702
|
+
},
|
|
12703
|
+
relativeTime: {
|
|
12704
|
+
future: 'di %s de',
|
|
12705
|
+
past: 'berî %s',
|
|
12706
|
+
s: processRelativeTime$7,
|
|
12707
|
+
ss: processRelativeTime$7,
|
|
12708
|
+
m: processRelativeTime$7,
|
|
12709
|
+
mm: processRelativeTime$7,
|
|
12710
|
+
h: processRelativeTime$7,
|
|
12711
|
+
hh: processRelativeTime$7,
|
|
12712
|
+
d: processRelativeTime$7,
|
|
12713
|
+
dd: processRelativeTime$7,
|
|
12714
|
+
w: processRelativeTime$7,
|
|
12715
|
+
ww: processRelativeTime$7,
|
|
12716
|
+
M: processRelativeTime$7,
|
|
12717
|
+
MM: processRelativeTime$7,
|
|
12718
|
+
y: processRelativeTime$7,
|
|
12719
|
+
yy: processRelativeTime$7,
|
|
12720
|
+
},
|
|
12721
|
+
dayOfMonthOrdinalParse: /\d{1,2}(?:yê|ê|\.)/,
|
|
12722
|
+
ordinal: function (num, period) {
|
|
12723
|
+
var p = period.toLowerCase();
|
|
12724
|
+
if (p.includes('w') || p.includes('m')) return num + '.';
|
|
12725
|
+
|
|
12726
|
+
return num + ezafeNumSuffix(num);
|
|
12727
|
+
},
|
|
12728
|
+
week: {
|
|
12729
|
+
dow: 1, // Monday is the first day of the week.
|
|
12730
|
+
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
|
12731
|
+
},
|
|
12732
|
+
});
|
|
12733
|
+
|
|
12734
|
+
//! moment.js locale configuration
|
|
12735
|
+
|
|
12736
|
+
var symbolMap$c = {
|
|
12504
12737
|
1: '١',
|
|
12505
12738
|
2: '٢',
|
|
12506
12739
|
3: '٣',
|
|
@@ -12512,7 +12745,7 @@
|
|
|
12512
12745
|
9: '٩',
|
|
12513
12746
|
0: '٠',
|
|
12514
12747
|
},
|
|
12515
|
-
numberMap$
|
|
12748
|
+
numberMap$b = {
|
|
12516
12749
|
'١': '1',
|
|
12517
12750
|
'٢': '2',
|
|
12518
12751
|
'٣': '3',
|
|
@@ -12596,14 +12829,14 @@
|
|
|
12596
12829
|
preparse: function (string) {
|
|
12597
12830
|
return string
|
|
12598
12831
|
.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
|
|
12599
|
-
return numberMap$
|
|
12832
|
+
return numberMap$b[match];
|
|
12600
12833
|
})
|
|
12601
12834
|
.replace(/،/g, ',');
|
|
12602
12835
|
},
|
|
12603
12836
|
postformat: function (string) {
|
|
12604
12837
|
return string
|
|
12605
12838
|
.replace(/\d/g, function (match) {
|
|
12606
|
-
return symbolMap$
|
|
12839
|
+
return symbolMap$c[match];
|
|
12607
12840
|
})
|
|
12608
12841
|
.replace(/,/g, '،');
|
|
12609
12842
|
},
|
|
@@ -12696,7 +12929,7 @@
|
|
|
12696
12929
|
|
|
12697
12930
|
//! moment.js locale configuration
|
|
12698
12931
|
|
|
12699
|
-
function processRelativeTime$
|
|
12932
|
+
function processRelativeTime$8(number, withoutSuffix, key, isFuture) {
|
|
12700
12933
|
var format = {
|
|
12701
12934
|
m: ['eng Minutt', 'enger Minutt'],
|
|
12702
12935
|
h: ['eng Stonn', 'enger Stonn'],
|
|
@@ -12808,15 +13041,15 @@
|
|
|
12808
13041
|
past: processPastTime,
|
|
12809
13042
|
s: 'e puer Sekonnen',
|
|
12810
13043
|
ss: '%d Sekonnen',
|
|
12811
|
-
m: processRelativeTime$
|
|
13044
|
+
m: processRelativeTime$8,
|
|
12812
13045
|
mm: '%d Minutten',
|
|
12813
|
-
h: processRelativeTime$
|
|
13046
|
+
h: processRelativeTime$8,
|
|
12814
13047
|
hh: '%d Stonnen',
|
|
12815
|
-
d: processRelativeTime$
|
|
13048
|
+
d: processRelativeTime$8,
|
|
12816
13049
|
dd: '%d Deeg',
|
|
12817
|
-
M: processRelativeTime$
|
|
13050
|
+
M: processRelativeTime$8,
|
|
12818
13051
|
MM: '%d Méint',
|
|
12819
|
-
y: processRelativeTime$
|
|
13052
|
+
y: processRelativeTime$8,
|
|
12820
13053
|
yy: '%d Joer',
|
|
12821
13054
|
},
|
|
12822
13055
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
@@ -12916,8 +13149,8 @@
|
|
|
12916
13149
|
return withoutSuffix
|
|
12917
13150
|
? forms(key)[0]
|
|
12918
13151
|
: isFuture
|
|
12919
|
-
|
|
12920
|
-
|
|
13152
|
+
? forms(key)[1]
|
|
13153
|
+
: forms(key)[2];
|
|
12921
13154
|
}
|
|
12922
13155
|
function special(number) {
|
|
12923
13156
|
return number % 10 === 0 || (number > 10 && number < 20);
|
|
@@ -13120,8 +13353,8 @@
|
|
|
13120
13353
|
return number === 1
|
|
13121
13354
|
? wordKey[0]
|
|
13122
13355
|
: number >= 2 && number <= 4
|
|
13123
|
-
|
|
13124
|
-
|
|
13356
|
+
? wordKey[1]
|
|
13357
|
+
: wordKey[2];
|
|
13125
13358
|
},
|
|
13126
13359
|
translate: function (number, withoutSuffix, key) {
|
|
13127
13360
|
var wordKey = translator.words[key];
|
|
@@ -13533,7 +13766,7 @@
|
|
|
13533
13766
|
|
|
13534
13767
|
//! moment.js locale configuration
|
|
13535
13768
|
|
|
13536
|
-
var symbolMap$
|
|
13769
|
+
var symbolMap$d = {
|
|
13537
13770
|
1: '१',
|
|
13538
13771
|
2: '२',
|
|
13539
13772
|
3: '३',
|
|
@@ -13545,7 +13778,7 @@
|
|
|
13545
13778
|
9: '९',
|
|
13546
13779
|
0: '०',
|
|
13547
13780
|
},
|
|
13548
|
-
numberMap$
|
|
13781
|
+
numberMap$c = {
|
|
13549
13782
|
'१': '1',
|
|
13550
13783
|
'२': '2',
|
|
13551
13784
|
'३': '3',
|
|
@@ -13688,12 +13921,12 @@
|
|
|
13688
13921
|
},
|
|
13689
13922
|
preparse: function (string) {
|
|
13690
13923
|
return string.replace(/[१२३४५६७८९०]/g, function (match) {
|
|
13691
|
-
return numberMap$
|
|
13924
|
+
return numberMap$c[match];
|
|
13692
13925
|
});
|
|
13693
13926
|
},
|
|
13694
13927
|
postformat: function (string) {
|
|
13695
13928
|
return string.replace(/\d/g, function (match) {
|
|
13696
|
-
return symbolMap$
|
|
13929
|
+
return symbolMap$d[match];
|
|
13697
13930
|
});
|
|
13698
13931
|
},
|
|
13699
13932
|
meridiemParse: /पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,
|
|
@@ -13929,7 +14162,7 @@
|
|
|
13929
14162
|
|
|
13930
14163
|
//! moment.js locale configuration
|
|
13931
14164
|
|
|
13932
|
-
var symbolMap$
|
|
14165
|
+
var symbolMap$e = {
|
|
13933
14166
|
1: '၁',
|
|
13934
14167
|
2: '၂',
|
|
13935
14168
|
3: '၃',
|
|
@@ -13941,7 +14174,7 @@
|
|
|
13941
14174
|
9: '၉',
|
|
13942
14175
|
0: '၀',
|
|
13943
14176
|
},
|
|
13944
|
-
numberMap$
|
|
14177
|
+
numberMap$d = {
|
|
13945
14178
|
'၁': '1',
|
|
13946
14179
|
'၂': '2',
|
|
13947
14180
|
'၃': '3',
|
|
@@ -13999,12 +14232,12 @@
|
|
|
13999
14232
|
},
|
|
14000
14233
|
preparse: function (string) {
|
|
14001
14234
|
return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) {
|
|
14002
|
-
return numberMap$
|
|
14235
|
+
return numberMap$d[match];
|
|
14003
14236
|
});
|
|
14004
14237
|
},
|
|
14005
14238
|
postformat: function (string) {
|
|
14006
14239
|
return string.replace(/\d/g, function (match) {
|
|
14007
|
-
return symbolMap$
|
|
14240
|
+
return symbolMap$e[match];
|
|
14008
14241
|
});
|
|
14009
14242
|
},
|
|
14010
14243
|
week: {
|
|
@@ -14049,13 +14282,13 @@
|
|
|
14049
14282
|
ss: '%d sekunder',
|
|
14050
14283
|
m: 'ett minutt',
|
|
14051
14284
|
mm: '%d minutter',
|
|
14052
|
-
h: '
|
|
14285
|
+
h: 'én time',
|
|
14053
14286
|
hh: '%d timer',
|
|
14054
|
-
d: '
|
|
14287
|
+
d: 'én dag',
|
|
14055
14288
|
dd: '%d dager',
|
|
14056
|
-
w: '
|
|
14289
|
+
w: 'én uke',
|
|
14057
14290
|
ww: '%d uker',
|
|
14058
|
-
M: '
|
|
14291
|
+
M: 'én måned',
|
|
14059
14292
|
MM: '%d måneder',
|
|
14060
14293
|
y: 'ett år',
|
|
14061
14294
|
yy: '%d år',
|
|
@@ -14070,7 +14303,7 @@
|
|
|
14070
14303
|
|
|
14071
14304
|
//! moment.js locale configuration
|
|
14072
14305
|
|
|
14073
|
-
var symbolMap$
|
|
14306
|
+
var symbolMap$f = {
|
|
14074
14307
|
1: '१',
|
|
14075
14308
|
2: '२',
|
|
14076
14309
|
3: '३',
|
|
@@ -14082,7 +14315,7 @@
|
|
|
14082
14315
|
9: '९',
|
|
14083
14316
|
0: '०',
|
|
14084
14317
|
},
|
|
14085
|
-
numberMap$
|
|
14318
|
+
numberMap$e = {
|
|
14086
14319
|
'१': '1',
|
|
14087
14320
|
'२': '2',
|
|
14088
14321
|
'३': '3',
|
|
@@ -14120,12 +14353,12 @@
|
|
|
14120
14353
|
},
|
|
14121
14354
|
preparse: function (string) {
|
|
14122
14355
|
return string.replace(/[१२३४५६७८९०]/g, function (match) {
|
|
14123
|
-
return numberMap$
|
|
14356
|
+
return numberMap$e[match];
|
|
14124
14357
|
});
|
|
14125
14358
|
},
|
|
14126
14359
|
postformat: function (string) {
|
|
14127
14360
|
return string.replace(/\d/g, function (match) {
|
|
14128
|
-
return symbolMap$
|
|
14361
|
+
return symbolMap$f[match];
|
|
14129
14362
|
});
|
|
14130
14363
|
},
|
|
14131
14364
|
meridiemParse: /राति|बिहान|दिउँसो|साँझ/,
|
|
@@ -14195,7 +14428,7 @@
|
|
|
14195
14428
|
monthsParse$8 = [
|
|
14196
14429
|
/^jan/i,
|
|
14197
14430
|
/^feb/i,
|
|
14198
|
-
/^maart|mrt
|
|
14431
|
+
/^(maart|mrt\.?)$/i,
|
|
14199
14432
|
/^apr/i,
|
|
14200
14433
|
/^mei$/i,
|
|
14201
14434
|
/^jun[i.]?$/i,
|
|
@@ -14293,7 +14526,7 @@
|
|
|
14293
14526
|
monthsParse$9 = [
|
|
14294
14527
|
/^jan/i,
|
|
14295
14528
|
/^feb/i,
|
|
14296
|
-
/^maart|mrt
|
|
14529
|
+
/^(maart|mrt\.?)$/i,
|
|
14297
14530
|
/^apr/i,
|
|
14298
14531
|
/^mei$/i,
|
|
14299
14532
|
/^jun[i.]?$/i,
|
|
@@ -14504,12 +14737,12 @@
|
|
|
14504
14737
|
number === 1
|
|
14505
14738
|
? 'r'
|
|
14506
14739
|
: number === 2
|
|
14507
|
-
|
|
14508
|
-
|
|
14509
|
-
|
|
14510
|
-
|
|
14511
|
-
|
|
14512
|
-
|
|
14740
|
+
? 'n'
|
|
14741
|
+
: number === 3
|
|
14742
|
+
? 'r'
|
|
14743
|
+
: number === 4
|
|
14744
|
+
? 't'
|
|
14745
|
+
: 'è';
|
|
14513
14746
|
if (period === 'w' || period === 'W') {
|
|
14514
14747
|
output = 'a';
|
|
14515
14748
|
}
|
|
@@ -14523,7 +14756,7 @@
|
|
|
14523
14756
|
|
|
14524
14757
|
//! moment.js locale configuration
|
|
14525
14758
|
|
|
14526
|
-
var symbolMap$
|
|
14759
|
+
var symbolMap$g = {
|
|
14527
14760
|
1: '੧',
|
|
14528
14761
|
2: '੨',
|
|
14529
14762
|
3: '੩',
|
|
@@ -14535,7 +14768,7 @@
|
|
|
14535
14768
|
9: '੯',
|
|
14536
14769
|
0: '੦',
|
|
14537
14770
|
},
|
|
14538
|
-
numberMap$
|
|
14771
|
+
numberMap$f = {
|
|
14539
14772
|
'੧': '1',
|
|
14540
14773
|
'੨': '2',
|
|
14541
14774
|
'੩': '3',
|
|
@@ -14596,12 +14829,12 @@
|
|
|
14596
14829
|
},
|
|
14597
14830
|
preparse: function (string) {
|
|
14598
14831
|
return string.replace(/[੧੨੩੪੫੬੭੮੯੦]/g, function (match) {
|
|
14599
|
-
return numberMap$
|
|
14832
|
+
return numberMap$f[match];
|
|
14600
14833
|
});
|
|
14601
14834
|
},
|
|
14602
14835
|
postformat: function (string) {
|
|
14603
14836
|
return string.replace(/\d/g, function (match) {
|
|
14604
|
-
return symbolMap$
|
|
14837
|
+
return symbolMap$g[match];
|
|
14605
14838
|
});
|
|
14606
14839
|
},
|
|
14607
14840
|
// Punjabi notation for meridiems are quite fuzzy in practice. While there exists
|
|
@@ -14970,8 +15203,8 @@
|
|
|
14970
15203
|
return num % 10 === 1 && num % 100 !== 11
|
|
14971
15204
|
? forms[0]
|
|
14972
15205
|
: num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
|
|
14973
|
-
|
|
14974
|
-
|
|
15206
|
+
? forms[1]
|
|
15207
|
+
: forms[2];
|
|
14975
15208
|
}
|
|
14976
15209
|
function relativeTimeWithPlural$3(number, withoutSuffix, key) {
|
|
14977
15210
|
var format = {
|
|
@@ -15512,7 +15745,7 @@
|
|
|
15512
15745
|
|
|
15513
15746
|
//! moment.js locale configuration
|
|
15514
15747
|
|
|
15515
|
-
function processRelativeTime$
|
|
15748
|
+
function processRelativeTime$9(number, withoutSuffix, key, isFuture) {
|
|
15516
15749
|
var result = number + ' ';
|
|
15517
15750
|
switch (key) {
|
|
15518
15751
|
case 's':
|
|
@@ -15657,18 +15890,18 @@
|
|
|
15657
15890
|
relativeTime: {
|
|
15658
15891
|
future: 'čez %s',
|
|
15659
15892
|
past: 'pred %s',
|
|
15660
|
-
s: processRelativeTime$
|
|
15661
|
-
ss: processRelativeTime$
|
|
15662
|
-
m: processRelativeTime$
|
|
15663
|
-
mm: processRelativeTime$
|
|
15664
|
-
h: processRelativeTime$
|
|
15665
|
-
hh: processRelativeTime$
|
|
15666
|
-
d: processRelativeTime$
|
|
15667
|
-
dd: processRelativeTime$
|
|
15668
|
-
M: processRelativeTime$
|
|
15669
|
-
MM: processRelativeTime$
|
|
15670
|
-
y: processRelativeTime$
|
|
15671
|
-
yy: processRelativeTime$
|
|
15893
|
+
s: processRelativeTime$9,
|
|
15894
|
+
ss: processRelativeTime$9,
|
|
15895
|
+
m: processRelativeTime$9,
|
|
15896
|
+
mm: processRelativeTime$9,
|
|
15897
|
+
h: processRelativeTime$9,
|
|
15898
|
+
hh: processRelativeTime$9,
|
|
15899
|
+
d: processRelativeTime$9,
|
|
15900
|
+
dd: processRelativeTime$9,
|
|
15901
|
+
M: processRelativeTime$9,
|
|
15902
|
+
MM: processRelativeTime$9,
|
|
15903
|
+
y: processRelativeTime$9,
|
|
15904
|
+
yy: processRelativeTime$9,
|
|
15672
15905
|
},
|
|
15673
15906
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
15674
15907
|
ordinal: '%d.',
|
|
@@ -16118,12 +16351,12 @@
|
|
|
16118
16351
|
~~((number % 100) / 10) === 1
|
|
16119
16352
|
? ':e'
|
|
16120
16353
|
: b === 1
|
|
16121
|
-
|
|
16122
|
-
|
|
16123
|
-
|
|
16124
|
-
|
|
16125
|
-
|
|
16126
|
-
|
|
16354
|
+
? ':a'
|
|
16355
|
+
: b === 2
|
|
16356
|
+
? ':a'
|
|
16357
|
+
: b === 3
|
|
16358
|
+
? ':e'
|
|
16359
|
+
: ':e';
|
|
16127
16360
|
return number + output;
|
|
16128
16361
|
},
|
|
16129
16362
|
week: {
|
|
@@ -16186,7 +16419,7 @@
|
|
|
16186
16419
|
|
|
16187
16420
|
//! moment.js locale configuration
|
|
16188
16421
|
|
|
16189
|
-
var symbolMap$
|
|
16422
|
+
var symbolMap$h = {
|
|
16190
16423
|
1: '௧',
|
|
16191
16424
|
2: '௨',
|
|
16192
16425
|
3: '௩',
|
|
@@ -16198,7 +16431,7 @@
|
|
|
16198
16431
|
9: '௯',
|
|
16199
16432
|
0: '௦',
|
|
16200
16433
|
},
|
|
16201
|
-
numberMap$
|
|
16434
|
+
numberMap$g = {
|
|
16202
16435
|
'௧': '1',
|
|
16203
16436
|
'௨': '2',
|
|
16204
16437
|
'௩': '3',
|
|
@@ -16265,12 +16498,12 @@
|
|
|
16265
16498
|
},
|
|
16266
16499
|
preparse: function (string) {
|
|
16267
16500
|
return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {
|
|
16268
|
-
return numberMap$
|
|
16501
|
+
return numberMap$g[match];
|
|
16269
16502
|
});
|
|
16270
16503
|
},
|
|
16271
16504
|
postformat: function (string) {
|
|
16272
16505
|
return string.replace(/\d/g, function (match) {
|
|
16273
|
-
return symbolMap$
|
|
16506
|
+
return symbolMap$h[match];
|
|
16274
16507
|
});
|
|
16275
16508
|
},
|
|
16276
16509
|
// refer http://ta.wikipedia.org/s/1er1
|
|
@@ -16446,12 +16679,12 @@
|
|
|
16446
16679
|
~~((number % 100) / 10) === 1
|
|
16447
16680
|
? 'th'
|
|
16448
16681
|
: b === 1
|
|
16449
|
-
|
|
16450
|
-
|
|
16451
|
-
|
|
16452
|
-
|
|
16453
|
-
|
|
16454
|
-
|
|
16682
|
+
? 'st'
|
|
16683
|
+
: b === 2
|
|
16684
|
+
? 'nd'
|
|
16685
|
+
: b === 3
|
|
16686
|
+
? 'rd'
|
|
16687
|
+
: 'th';
|
|
16455
16688
|
return number + output;
|
|
16456
16689
|
},
|
|
16457
16690
|
week: {
|
|
@@ -16788,10 +17021,10 @@
|
|
|
16788
17021
|
output.indexOf('jaj') !== -1
|
|
16789
17022
|
? time.slice(0, -3) + 'leS'
|
|
16790
17023
|
: output.indexOf('jar') !== -1
|
|
16791
|
-
|
|
16792
|
-
|
|
16793
|
-
|
|
16794
|
-
|
|
17024
|
+
? time.slice(0, -3) + 'waQ'
|
|
17025
|
+
: output.indexOf('DIS') !== -1
|
|
17026
|
+
? time.slice(0, -3) + 'nem'
|
|
17027
|
+
: time + ' pIq';
|
|
16795
17028
|
return time;
|
|
16796
17029
|
}
|
|
16797
17030
|
|
|
@@ -16801,10 +17034,10 @@
|
|
|
16801
17034
|
output.indexOf('jaj') !== -1
|
|
16802
17035
|
? time.slice(0, -3) + 'Hu’'
|
|
16803
17036
|
: output.indexOf('jar') !== -1
|
|
16804
|
-
|
|
16805
|
-
|
|
16806
|
-
|
|
16807
|
-
|
|
17037
|
+
? time.slice(0, -3) + 'wen'
|
|
17038
|
+
: output.indexOf('DIS') !== -1
|
|
17039
|
+
? time.slice(0, -3) + 'ben'
|
|
17040
|
+
: time + ' ret';
|
|
16808
17041
|
return time;
|
|
16809
17042
|
}
|
|
16810
17043
|
|
|
@@ -17043,18 +17276,18 @@
|
|
|
17043
17276
|
relativeTime: {
|
|
17044
17277
|
future: 'osprei %s',
|
|
17045
17278
|
past: 'ja%s',
|
|
17046
|
-
s: processRelativeTime$
|
|
17047
|
-
ss: processRelativeTime$
|
|
17048
|
-
m: processRelativeTime$
|
|
17049
|
-
mm: processRelativeTime$
|
|
17050
|
-
h: processRelativeTime$
|
|
17051
|
-
hh: processRelativeTime$
|
|
17052
|
-
d: processRelativeTime$
|
|
17053
|
-
dd: processRelativeTime$
|
|
17054
|
-
M: processRelativeTime$
|
|
17055
|
-
MM: processRelativeTime$
|
|
17056
|
-
y: processRelativeTime$
|
|
17057
|
-
yy: processRelativeTime$
|
|
17279
|
+
s: processRelativeTime$a,
|
|
17280
|
+
ss: processRelativeTime$a,
|
|
17281
|
+
m: processRelativeTime$a,
|
|
17282
|
+
mm: processRelativeTime$a,
|
|
17283
|
+
h: processRelativeTime$a,
|
|
17284
|
+
hh: processRelativeTime$a,
|
|
17285
|
+
d: processRelativeTime$a,
|
|
17286
|
+
dd: processRelativeTime$a,
|
|
17287
|
+
M: processRelativeTime$a,
|
|
17288
|
+
MM: processRelativeTime$a,
|
|
17289
|
+
y: processRelativeTime$a,
|
|
17290
|
+
yy: processRelativeTime$a,
|
|
17058
17291
|
},
|
|
17059
17292
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
17060
17293
|
ordinal: '%d.',
|
|
@@ -17064,7 +17297,7 @@
|
|
|
17064
17297
|
},
|
|
17065
17298
|
});
|
|
17066
17299
|
|
|
17067
|
-
function processRelativeTime$
|
|
17300
|
+
function processRelativeTime$a(number, withoutSuffix, key, isFuture) {
|
|
17068
17301
|
var format = {
|
|
17069
17302
|
s: ['viensas secunds', "'iensas secunds"],
|
|
17070
17303
|
ss: [number + ' secunds', '' + number + ' secunds'],
|
|
@@ -17082,8 +17315,8 @@
|
|
|
17082
17315
|
return isFuture
|
|
17083
17316
|
? format[key][0]
|
|
17084
17317
|
: withoutSuffix
|
|
17085
|
-
|
|
17086
|
-
|
|
17318
|
+
? format[key][0]
|
|
17319
|
+
: format[key][1];
|
|
17087
17320
|
}
|
|
17088
17321
|
|
|
17089
17322
|
//! moment.js locale configuration
|
|
@@ -17303,8 +17536,8 @@
|
|
|
17303
17536
|
return num % 10 === 1 && num % 100 !== 11
|
|
17304
17537
|
? forms[0]
|
|
17305
17538
|
: num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
|
|
17306
|
-
|
|
17307
|
-
|
|
17539
|
+
? forms[1]
|
|
17540
|
+
: forms[2];
|
|
17308
17541
|
}
|
|
17309
17542
|
function relativeTimeWithPlural$4(number, withoutSuffix, key) {
|
|
17310
17543
|
var format = {
|
|
@@ -17352,8 +17585,8 @@
|
|
|
17352
17585
|
nounCase = /(\[[ВвУу]\]) ?dddd/.test(format)
|
|
17353
17586
|
? 'accusative'
|
|
17354
17587
|
: /\[?(?:минулої|наступної)? ?\] ?dddd/.test(format)
|
|
17355
|
-
|
|
17356
|
-
|
|
17588
|
+
? 'genitive'
|
|
17589
|
+
: 'nominative';
|
|
17357
17590
|
return weekdays[nounCase][m.day()];
|
|
17358
17591
|
}
|
|
17359
17592
|
function processHoursFunction(str) {
|
|
@@ -17768,12 +18001,12 @@
|
|
|
17768
18001
|
~~((number % 100) / 10) === 1
|
|
17769
18002
|
? 'th'
|
|
17770
18003
|
: b === 1
|
|
17771
|
-
|
|
17772
|
-
|
|
17773
|
-
|
|
17774
|
-
|
|
17775
|
-
|
|
17776
|
-
|
|
18004
|
+
? 'st'
|
|
18005
|
+
: b === 2
|
|
18006
|
+
? 'nd'
|
|
18007
|
+
: b === 3
|
|
18008
|
+
? 'rd'
|
|
18009
|
+
: 'th';
|
|
17777
18010
|
return number + output;
|
|
17778
18011
|
},
|
|
17779
18012
|
week: {
|