@supernova-studio/pulsar-core 2.0.18 → 2.1.0
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/build/main/core/src/engine/generation/ExportDataProducer.d.ts +2 -2
- package/build/main/core/src/engine/generation/requests/ExportDataRequest.d.ts +2 -2
- package/build/main/core/src/engine/generation/requests/ExportDataRequestProducer.d.ts +2 -2
- package/build/main/core/src/engine/generation/requests/ExportDataResponse.d.ts +2 -2
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestAsset.d.ts +2 -2
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestBlueprint.d.ts +3 -3
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestBundledResource.d.ts +2 -2
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMComponent.d.ts +4 -4
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMComponentGroup.d.ts +4 -4
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMDocumentationPage.d.ts +4 -4
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMGeneric.d.ts +3 -3
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTheme.d.ts +4 -4
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTokenGroup.d.ts +4 -4
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTokenType.d.ts +4 -4
- package/build/main/core/src/engine/items/construction/ExportItem.d.ts +2 -2
- package/build/main/core/src/engine/items/requests/ExportItemResponse.d.ts +2 -2
- package/build/main/core/src/engine/loaders/BlueprintLoader.d.ts +1 -1
- package/build/main/core/src/engine/writing/requests/ExportWriterRequest.d.ts +2 -2
- package/build/main/core/src/engine/writing/requests/ExportWriterResponse.d.ts +2 -2
- package/build/main/core/src/engine/writing/writers/memory/ExportWriterMemoryRequest.d.ts +3 -3
- package/build/main/core/src/exports.d.ts +3 -0
- package/build/main/core/src/pulsar/managers/PulsarCIManager.d.ts +3 -3
- package/build/main/core/src/pulsar/managers/PulsarCodeManager.d.ts +2 -2
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageBrowserLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageFileSystemLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageGithubLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageMemoryLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageURLLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterAssetLoader.d.ts +2 -2
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterConfigLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterJSLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterLocalConfigLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterMappingLoader.d.ts +4 -4
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterObjectLoader.d.ts +2 -1
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterReadmeLoader.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterSourceLoader.d.ts +2 -2
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterMappingValidator.d.ts +1 -1
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterObjectValidator.d.ts +2 -2
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterSourceValidator.d.ts +1 -1
- package/build/main/core/src/tests/casebuilders/dsm.d.ts +1 -1
- package/build/main/core/src/tests/casebuilders/modelObjects.d.ts +1 -1
- package/build/main/core/src/tests/dynamic_execution/DynamicExecutionSupport.d.ts +1 -1
- package/build/main/pulsar-core.js +2 -2
- package/package.json +3 -3
|
@@ -3,8 +3,8 @@ import { PCExportConfiguration } from '../configuration/ExportConfiguration';
|
|
|
3
3
|
import { PCExportDataResponse } from './requests/ExportDataResponse';
|
|
4
4
|
import { PCExporterMapBlueprint } from './../../model/maps/ExporterMapBlueprint';
|
|
5
5
|
import { PCExportDataRequest } from './requests/ExportDataRequest';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { PCExporterMapAsset } from '../../model/maps/ExporterMapAsset';
|
|
7
|
+
import { PCExporterMapBundledResource } from '../../model/maps/ExporterMapBundledResource';
|
|
8
8
|
export declare class PCExportDataProducer {
|
|
9
9
|
configuration: PCExportConfiguration;
|
|
10
10
|
processingQueue: PCExportDataQueue;
|
|
@@ -2,9 +2,9 @@ import { PCExportConfiguration } from '../../configuration/ExportConfiguration';
|
|
|
2
2
|
import { PCExporterMapBlueprint } from './../../../model/maps/ExporterMapBlueprint';
|
|
3
3
|
import { PCExportDataRequestDataStore } from './ExportDataRequestDataStore';
|
|
4
4
|
import { PCExportDataRequestNameStore } from './ExportDataRequestNameStore';
|
|
5
|
+
import { PCExporterMapAsset } from '../../../model/maps/ExporterMapAsset';
|
|
6
|
+
import { PCExporterMapBundledResource } from '../../../model/maps/ExporterMapBundledResource';
|
|
5
7
|
import { PLEmittedContent } from '@supernova-studio/pulsar-language';
|
|
6
|
-
import { PCExporterMapBundledResource } from '@pulsar/core/model/maps/ExporterMapBundledResource';
|
|
7
|
-
import { PCExporterMapAsset } from '@pulsar/core/model/maps/ExporterMapAsset';
|
|
8
8
|
export declare class PCExportDataRequest {
|
|
9
9
|
dataStore: PCExportDataRequestDataStore | null;
|
|
10
10
|
nameStore: PCExportDataRequestNameStore | null;
|
|
@@ -2,8 +2,8 @@ import { PCExportConfiguration } from '../../configuration/ExportConfiguration';
|
|
|
2
2
|
import { PCExportDataRequest } from './ExportDataRequest';
|
|
3
3
|
import { PCExporterSource } from '../../../model/sources/ExporterSource';
|
|
4
4
|
import { PCExporterMapBlueprint } from '../../../model/maps/ExporterMapBlueprint';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
5
|
+
import { PCExporterMapAsset } from '../../../model/maps/ExporterMapAsset';
|
|
6
|
+
import { PCExporterMapBundledResource } from '../../../model/maps/ExporterMapBundledResource';
|
|
7
7
|
export declare class PCExportDataRequestProducer {
|
|
8
8
|
configuration: PCExportConfiguration;
|
|
9
9
|
constructor(exportConfiguration: PCExportConfiguration);
|
|
@@ -3,8 +3,8 @@ import { PCExporterMapBlueprint } from './../../../model/maps/ExporterMapBluepri
|
|
|
3
3
|
import { PCExportDataRequestDataStore } from './ExportDataRequestDataStore';
|
|
4
4
|
import { PCExportDataRequestNameStore } from './ExportDataRequestNameStore';
|
|
5
5
|
import { PLEmittedContent } from '@supernova-studio/pulsar-language';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { PCExporterMapAsset } from '../../../model/maps/ExporterMapAsset';
|
|
7
|
+
import { PCExporterMapBundledResource } from '../../../model/maps/ExporterMapBundledResource';
|
|
8
8
|
export declare class PCExportDataResponse {
|
|
9
9
|
dataStore: PCExportDataRequestDataStore;
|
|
10
10
|
nameStore: PCExportDataRequestNameStore;
|
package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestAsset.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
3
2
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
4
|
-
import { PCExporterMapAsset, PCExporterMapAssetFormat, PCExporterMapAssetScale } from '@pulsar/core/model/maps/ExporterMapAsset';
|
|
5
3
|
import { AssetFormat } from '@supernovaio/supernova-sdk';
|
|
6
4
|
import { AssetScale } from '@supernovaio/supernova-sdk';
|
|
7
5
|
import { RenderedAsset } from '@supernovaio/supernova-sdk';
|
|
6
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
7
|
+
import { PCExporterMapAsset, PCExporterMapAssetFormat, PCExporterMapAssetScale } from '../../../../../model/maps/ExporterMapAsset';
|
|
8
8
|
export declare class PCExportDataRequestAsset extends PCExportDataRequest {
|
|
9
9
|
executionContext: PLExecutionContext;
|
|
10
10
|
constructor(configuration: PCExportConfiguration, map: PCExporterMapAsset, executionContext: PLExecutionContext);
|
package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestBlueprint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
3
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
4
1
|
import { PLEmittedContent, PLExecutionContext, PLLogger } from '@supernova-studio/pulsar-language';
|
|
5
2
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
3
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
4
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
5
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
6
6
|
export declare class PCExportDataRequestBlueprint extends PCExportDataRequest {
|
|
7
7
|
executionContext: PLExecutionContext;
|
|
8
8
|
constructor(configuration: PCExportConfiguration, map: PCExporterMapBlueprint, executionContext: PLExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { PCExporterMapBundledResource } from '@pulsar/core/model/maps/ExporterMapBundledResource';
|
|
3
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
4
2
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
3
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
4
|
+
import { PCExporterMapBundledResource } from '../../../../../model/maps/ExporterMapBundledResource';
|
|
5
5
|
export declare class PCExportDataRequestBundledResource extends PCExportDataRequest {
|
|
6
6
|
executionContext: PLExecutionContext;
|
|
7
7
|
constructor(configuration: PCExportConfiguration, map: PCExporterMapBundledResource, executionContext: PLExecutionContext);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { DSMReferenceStoreEntry } from '@pulsar/core/model/dsm/DSMReferenceStore';
|
|
3
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
4
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
5
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { DSMReferenceStoreEntry } from '../../../../../model/dsm/DSMReferenceStore';
|
|
3
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
4
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
5
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
6
6
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
7
7
|
import { PCExportDataRequestBlueprint } from './ExportDataRequestBlueprint';
|
|
8
8
|
export declare class PCExportDataRequestDSMComponent extends PCExportDataRequestBlueprint {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { DSMReferenceStoreEntry } from '@pulsar/core/model/dsm/DSMReferenceStore';
|
|
3
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
4
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
5
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { DSMReferenceStoreEntry } from '../../../../../model/dsm/DSMReferenceStore';
|
|
3
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
4
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
5
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
6
6
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
7
7
|
import { PCExportDataRequestBlueprint } from './ExportDataRequestBlueprint';
|
|
8
8
|
export declare class PCExportDataRequestDSMComponentGroup extends PCExportDataRequestBlueprint {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { DSMReferenceStoreEntry } from '@pulsar/core/model/dsm/DSMReferenceStore';
|
|
3
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
4
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
5
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { DSMReferenceStoreEntry } from '../../../../../model/dsm/DSMReferenceStore';
|
|
3
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
4
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
5
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
6
6
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
7
7
|
import { PCExportDataRequestBlueprint } from './ExportDataRequestBlueprint';
|
|
8
8
|
export declare class PCExportDataRequestDSMDocumentationPage extends PCExportDataRequestBlueprint {
|
package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMGeneric.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
3
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
4
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
3
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
4
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
5
5
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
6
6
|
import { PCExportDataRequestBlueprint } from './ExportDataRequestBlueprint';
|
|
7
7
|
export declare class PCExportDataRequestDSMGeneric extends PCExportDataRequestBlueprint {
|
package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTheme.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { DSMReferenceStoreEntry } from '@pulsar/core/model/dsm/DSMReferenceStore';
|
|
3
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
4
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
5
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { DSMReferenceStoreEntry } from '../../../../../model/dsm/DSMReferenceStore';
|
|
3
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
4
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
5
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
6
6
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
7
7
|
import { PCExportDataRequestBlueprint } from './ExportDataRequestBlueprint';
|
|
8
8
|
export declare class PCExportDataRequestDSMTheme extends PCExportDataRequestBlueprint {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { DSMReferenceStoreEntry } from '@pulsar/core/model/dsm/DSMReferenceStore';
|
|
3
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
4
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
5
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { DSMReferenceStoreEntry } from '../../../../../model/dsm/DSMReferenceStore';
|
|
3
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
4
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
5
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
6
6
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
7
7
|
import { PCExportDataRequestBlueprint } from './ExportDataRequestBlueprint';
|
|
8
8
|
export declare class PCExportDataRequestDSMTokenGroup extends PCExportDataRequestBlueprint {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExportConfiguration } from '@pulsar/core/engine/configuration/ExportConfiguration';
|
|
2
|
-
import { DSMReferenceStoreEntry } from '@pulsar/core/model/dsm/DSMReferenceStore';
|
|
3
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
4
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
5
1
|
import { PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { DSMReferenceStoreEntry } from '../../../../../model/dsm/DSMReferenceStore';
|
|
3
|
+
import { PCExporterMapBlueprint } from '../../../../../model/maps/ExporterMapBlueprint';
|
|
4
|
+
import { PCExporterSource } from '../../../../../model/sources/ExporterSource';
|
|
5
|
+
import { PCExportConfiguration } from '../../../../configuration/ExportConfiguration';
|
|
6
6
|
import { PCExportDataRequest } from '../../ExportDataRequest';
|
|
7
7
|
import { PCExportDataRequestBlueprint } from './ExportDataRequestBlueprint';
|
|
8
8
|
export declare class PCExportDataRequestDSMTokenType extends PCExportDataRequestBlueprint {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporterMapAsset } from '
|
|
2
|
-
import { PCExporterMapBundledResource } from '
|
|
1
|
+
import { PCExporterMapAsset } from '../../../model/maps/ExporterMapAsset';
|
|
2
|
+
import { PCExporterMapBundledResource } from '../../../model/maps/ExporterMapBundledResource';
|
|
3
3
|
import { PCExporterMapBlueprint } from './../../../model/maps/ExporterMapBlueprint';
|
|
4
4
|
export declare class PCExportItem {
|
|
5
5
|
map: PCExporterMapBlueprint | PCExporterMapBundledResource | PCExporterMapAsset;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporterMapAsset } from '
|
|
2
|
-
import { PCExporterMapBundledResource } from '
|
|
1
|
+
import { PCExporterMapAsset } from '../../../model/maps/ExporterMapAsset';
|
|
2
|
+
import { PCExporterMapBundledResource } from '../../../model/maps/ExporterMapBundledResource';
|
|
3
3
|
import { PCExporterMapBlueprint } from './../../../model/maps/ExporterMapBlueprint';
|
|
4
4
|
import { PCExportItem } from './../construction/ExportItem';
|
|
5
5
|
import { PCExportItemRequest } from './ExportItemRequest';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
1
|
import { PLBlueprint, PLBlueprintConfiguration, PLExecutionContext } from '@supernova-studio/pulsar-language';
|
|
3
2
|
import { PLBlueprintLoader } from '@supernova-studio/pulsar-language';
|
|
3
|
+
import { PCExporter } from '../../model/exporters/Exporter';
|
|
4
4
|
export declare class PCBlueprintLoader extends PLBlueprintLoader {
|
|
5
5
|
exporter: PCExporter;
|
|
6
6
|
constructor(exporter: PCExporter);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporterMapAsset } from '
|
|
2
|
-
import { PCExporterMapBundledResource } from '
|
|
1
|
+
import { PCExporterMapAsset } from '../../../model/maps/ExporterMapAsset';
|
|
2
|
+
import { PCExporterMapBundledResource } from '../../../model/maps/ExporterMapBundledResource';
|
|
3
3
|
import { PCExporterMapBlueprint } from './../../../model/maps/ExporterMapBlueprint';
|
|
4
4
|
import { PCExportConfiguration } from './../../configuration/ExportConfiguration';
|
|
5
5
|
import { PCExportItem } from './../../items/construction/ExportItem';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { PCExportWriterRequest } from './ExportWriterRequest';
|
|
2
2
|
import { PCExporterMapBlueprint } from './../../../model/maps/ExporterMapBlueprint';
|
|
3
3
|
import { PCExportItem } from './../../items/construction/ExportItem';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { PCExporterMapAsset } from '../../../model/maps/ExporterMapAsset';
|
|
5
|
+
import { PCExporterMapBundledResource } from '../../../model/maps/ExporterMapBundledResource';
|
|
6
6
|
export declare class PCExportWriterResponse {
|
|
7
7
|
item: PCExportItem;
|
|
8
8
|
map: PCExporterMapBlueprint | PCExporterMapBundledResource | PCExporterMapAsset;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { PCExportWriterRequest } from './../../requests/ExportWriterRequest';
|
|
2
2
|
import { PCExportItem } from './../../../items/construction/ExportItem';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
3
|
+
import { PCExporterMapAsset } from '../../../../model/maps/ExporterMapAsset';
|
|
4
|
+
import { PCExporterMapBlueprint } from '../../../../model/maps/ExporterMapBlueprint';
|
|
5
|
+
import { PCExporterMapBundledResource } from '../../../../model/maps/ExporterMapBundledResource';
|
|
6
6
|
export declare class PCExportWriterMemoryRequest extends PCExportWriterRequest {
|
|
7
7
|
writeItem(): Promise<PCExportItem>;
|
|
8
8
|
writeGeneratedSourceItem(map: PCExporterMapBlueprint, item: PCExportItem): Promise<PCExportItem>;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { PCPulsarExporterPackageAnalyzer } from './pulsar/managers/generators/PulsarExporterPackageAnalyzer';
|
|
2
|
+
export { PCLogger } from './tools/Logger';
|
|
3
|
+
export { PCLoggerDefaultMessages } from './tools/LoggerDefaultMessages';
|
|
1
4
|
export { PCPulsar, PCPulsarExporterMode } from './pulsar/Pulsar';
|
|
2
5
|
export { PCPulsarStaticAnalysis } from './pulsar/PulsarStaticAnalysis';
|
|
3
6
|
export { DSMReferenceStore } from './model/dsm/DSMReferenceStore';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
|
-
import { PCLogger } from '@pulsar/core/tools/Logger';
|
|
3
1
|
import { DSMBridgeConfiguration } from '@supernova-studio/pulsar-language';
|
|
4
|
-
import { DSMReferenceStore } from '../..';
|
|
5
2
|
import { PCPulsarExporterMode } from '../Pulsar';
|
|
6
3
|
import { PCEngineExporterProcessingResult } from '../PulsarInterface';
|
|
4
|
+
import { PCExporter } from '../../model/exporters/Exporter';
|
|
5
|
+
import { PCLogger } from '../../tools/Logger';
|
|
6
|
+
import { DSMReferenceStore } from '../../model/dsm/DSMReferenceStore';
|
|
7
7
|
export declare class PCPulsarCIManager {
|
|
8
8
|
private exporter;
|
|
9
9
|
private mode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
|
-
import { PCLogger } from '@pulsar/core/tools/Logger';
|
|
3
1
|
import { DSMBridgeConfiguration, DSMExecutionContext, PLBlueprint, PLHighlightEngineToken, PLAutocompleteEngineApplicationResult, PLAutocompleteEngineSuggestion } from '@supernova-studio/pulsar-language';
|
|
2
|
+
import { PCLogger } from '../../exports';
|
|
3
|
+
import { PCExporter } from '../../model/exporters/Exporter';
|
|
4
4
|
import { PCEngineSourceProcessingResult } from './../PulsarInterface';
|
|
5
5
|
export declare class PCPulsarCodeManager {
|
|
6
6
|
private exporter;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PCExporter, PCExporterEnvironment } from '
|
|
1
|
+
import { PCExporter, PCExporterEnvironment } from '../../../model/exporters/Exporter';
|
|
2
2
|
import { PCPulsarExporterPackageLoader } from './PulsarExporterPackageLoader';
|
|
3
3
|
export declare class PCPulsarExporterPackageBrowserLoader extends PCPulsarExporterPackageLoader {
|
|
4
4
|
remoteSourceUrl: string;
|
package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageFileSystemLoader.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporter, PCExporterEnvironment } from '@pulsar/core/model/exporters/Exporter';
|
|
2
1
|
import { PCPulsarExporterPackageLoader } from './PulsarExporterPackageLoader';
|
|
2
|
+
import { PCExporter, PCExporterEnvironment } from '../../../model/exporters/Exporter';
|
|
3
3
|
export declare class PCPulsarExporterPackageFileSystemLoader extends PCPulsarExporterPackageLoader {
|
|
4
4
|
rootDirectoryUrl: string;
|
|
5
5
|
configurationFileName: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { SimpleGithubParseResult } from '@supernova-studio/simple-parse-github-url';
|
|
2
2
|
import JSZip from 'jszip';
|
|
3
|
-
import { PCExporter, PCExporterEnvironment } from '@pulsar/core/model/exporters/Exporter';
|
|
4
3
|
import { PCPulsarExporterPackageLoader } from './PulsarExporterPackageLoader';
|
|
5
4
|
import { Octokit } from 'octokit';
|
|
5
|
+
import { PCExporter, PCExporterEnvironment } from '../../../model/exporters/Exporter';
|
|
6
6
|
declare type ExporterRepository = {
|
|
7
7
|
octokit: Octokit;
|
|
8
8
|
branch: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PCExporter, PCExporterEnvironment } from '@pulsar/core/model/exporters/Exporter';
|
|
2
1
|
import { PCPulsarExporterPackageLoader } from './PulsarExporterPackageLoader';
|
|
3
2
|
import JSZip from 'jszip';
|
|
3
|
+
import { PCExporter, PCExporterEnvironment } from '../../../model/exporters/Exporter';
|
|
4
4
|
export declare class PCPulsarExporterPackageMemoryLoader extends PCPulsarExporterPackageLoader {
|
|
5
5
|
exporterPackage: Map<string, JSZip.JSZipObject>;
|
|
6
6
|
configurationFileName: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporter, PCExporterEnvironment } from '@pulsar/core/model/exporters/Exporter';
|
|
2
1
|
import { PCPulsarExporterPackageLoader } from './PulsarExporterPackageLoader';
|
|
2
|
+
import { PCExporter, PCExporterEnvironment } from '../../../model/exporters/Exporter';
|
|
3
3
|
export declare class PCPulsarExporterPackageURLLoader extends PCPulsarExporterPackageLoader {
|
|
4
4
|
remoteSourceUrl: string;
|
|
5
5
|
environment: PCExporterEnvironment;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { PCBundledResource } from '../../../../model/assets/ExporterBundledResource';
|
|
2
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
3
3
|
export declare class PCPulsarExporterBundledResourceLoader {
|
|
4
4
|
exporter: PCExporter;
|
|
5
5
|
iconName: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
1
|
import JSZip from 'jszip';
|
|
2
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
3
3
|
export declare class PCPulsarExporterJSLoader {
|
|
4
4
|
exporter: PCExporter;
|
|
5
5
|
constructor(exporter: PCExporter);
|
package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterLocalConfigLoader.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
1
|
import JSZip from 'jszip';
|
|
2
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
3
3
|
export declare class PCPulsarExporterLocalConfigLoader {
|
|
4
4
|
exporter: PCExporter;
|
|
5
5
|
configName: string;
|
package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterMappingLoader.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
|
-
import { PCExporterMapBlueprint } from '@pulsar/core/model/maps/ExporterMapBlueprint';
|
|
3
|
-
import { PCExporterMapBundledResource } from '@pulsar/core/model/maps/ExporterMapBundledResource';
|
|
4
1
|
import JSZip from 'jszip';
|
|
5
|
-
import {
|
|
2
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
3
|
+
import { PCExporterMapAsset } from '../../../../model/maps/ExporterMapAsset';
|
|
4
|
+
import { PCExporterMapBlueprint } from '../../../../model/maps/ExporterMapBlueprint';
|
|
5
|
+
import { PCExporterMapBundledResource } from '../../../../model/maps/ExporterMapBundledResource';
|
|
6
6
|
export declare type PCPulsarExporterMappingLoaderPack = {
|
|
7
7
|
blueprintMaps?: Array<PCExporterMapBlueprint>;
|
|
8
8
|
bundledResourceMaps?: Array<PCExporterMapBundledResource>;
|
package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterObjectLoader.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PCExporterEnvironment } from '../../../../exports';
|
|
2
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
2
3
|
export declare class PCPulsarExporterObjectLoader {
|
|
3
4
|
environment: PCExporterEnvironment;
|
|
4
5
|
constructor(environment: PCExporterEnvironment);
|
package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterSourceLoader.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
|
-
import { PCExporterSource } from '@pulsar/core/model/sources/ExporterSource';
|
|
3
1
|
import JSZip from 'jszip';
|
|
2
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
3
|
+
import { PCExporterSource } from '../../../../model/sources/ExporterSource';
|
|
4
4
|
export declare class PCPulsarExporterSourceLoader {
|
|
5
5
|
exporter: PCExporter;
|
|
6
6
|
extension: string;
|
package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterMappingValidator.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PCExporter } from '
|
|
1
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
2
2
|
export declare class PCPulsarExporterMappingValidator {
|
|
3
3
|
validateOutputConfigFileContent(content: string, exporter: PCExporter): Object;
|
|
4
4
|
private validateBlueprintConfiguration;
|
package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterObjectValidator.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PCExporterModel } from '
|
|
2
|
-
import { PCExporterContributionModel } from '
|
|
1
|
+
import { PCExporterModel } from '../../../../model/exporters/Exporter';
|
|
2
|
+
import { PCExporterContributionModel } from '../../../../model/exporters/ExporterContribution';
|
|
3
3
|
export declare class PCPulsarExporterObjectValidator {
|
|
4
4
|
static validateExporterConfigFileContent(content: string): PCExporterModel;
|
|
5
5
|
static validateExporterConfigFileNewEngine(content: string): PCExporterModel;
|
package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterSourceValidator.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PCExporter } from '
|
|
1
|
+
import { PCExporter } from '../../../../model/exporters/Exporter';
|
|
2
2
|
export declare class PCPulsarExporterSourceValidator {
|
|
3
3
|
static validateSourceConfigFileContent(content: string, exporter: PCExporter): Object;
|
|
4
4
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PCExporter } from '@pulsar/core/model/exporters/Exporter';
|
|
2
1
|
import { DSMBridge, DSMExecutionContext } from '@supernova-studio/pulsar-language';
|
|
3
2
|
import { DSMReferenceStore } from '../..';
|
|
3
|
+
import { PCExporter } from '../../model/exporters/Exporter';
|
|
4
4
|
export declare function newConfiguredDSMExecutionContext(exporter: PCExporter): Promise<DSMExecutionContext>;
|
|
5
5
|
export declare function newConfiguredDSMStore(): Promise<DSMReferenceStore>;
|
|
6
6
|
export declare function newConfiguredDSMBridge(): Promise<DSMBridge>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PCExporter } from './../../model/exporters/Exporter';
|
|
2
2
|
import { PCExporterSource, PCExporterSourceContextType } from '../../model/sources/ExporterSource';
|
|
3
3
|
import { PCExporterMapBlueprint } from '../../model/maps/ExporterMapBlueprint';
|
|
4
|
-
import { PCExporterContributionConfigurationItemModel } from '
|
|
4
|
+
import { PCExporterContributionConfigurationItemModel } from '../../model/exporters/ExporterContributionConfigurationItem';
|
|
5
5
|
export declare function newEmptyExporter(): PCExporter;
|
|
6
6
|
export declare function newFullExporter(configuration?: Array<PCExporterContributionConfigurationItemModel>): PCExporter;
|
|
7
7
|
export declare function newBlueprintFor(exporter: PCExporter, definition: string, name: string, path: string | null, context: PCExporterSourceContextType, targetsFullExport?: boolean, targetsSandbox?: boolean): PCExporterSource;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { PCEngineSourceProcessingResult } from '../../exports';
|
|
2
|
-
import { PCExporterContributionConfigurationItemModel } from '
|
|
2
|
+
import { PCExporterContributionConfigurationItemModel } from '../../model/exporters/ExporterContributionConfigurationItem';
|
|
3
3
|
export declare function executeBlueprintWithJSHelper(blueprint: string, jsHelper: string): Promise<PCEngineSourceProcessingResult>;
|
|
4
4
|
export declare function executeBlueprintWithJSHelperAndConfiguration(blueprint: string, jsHelper: string, configuration: Array<PCExporterContributionConfigurationItemModel>): Promise<PCEngineSourceProcessingResult>;
|