@microsoft/power-apps 0.3.1
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/LICENSE +153 -0
- package/README.md +63 -0
- package/lib/__tests__/connectorDataOperationExecutor.spec.d.ts +5 -0
- package/lib/__tests__/connectorDataOperationExecutor.spec.d.ts.map +1 -0
- package/lib/__tests__/connectorDataOperationExecutor.spec.js +509 -0
- package/lib/__tests__/connectorDataOperationExecutor.spec.js.map +1 -0
- package/lib/__tests__/dataverseDataOperationExecutor.spec.d.ts +5 -0
- package/lib/__tests__/dataverseDataOperationExecutor.spec.d.ts.map +1 -0
- package/lib/__tests__/dataverseDataOperationExecutor.spec.js +349 -0
- package/lib/__tests__/dataverseDataOperationExecutor.spec.js.map +1 -0
- package/lib/__tests__/helpers/testHelpers.d.ts +27 -0
- package/lib/__tests__/helpers/testHelpers.d.ts.map +1 -0
- package/lib/__tests__/helpers/testHelpers.js +67 -0
- package/lib/__tests__/helpers/testHelpers.js.map +1 -0
- package/lib/__tests__/index.spec.d.ts +5 -0
- package/lib/__tests__/index.spec.d.ts.map +1 -0
- package/lib/__tests__/index.spec.js +10 -0
- package/lib/__tests__/index.spec.js.map +1 -0
- package/lib/__tests__/mockDataOperationExecutor.spec.d.ts +5 -0
- package/lib/__tests__/mockDataOperationExecutor.spec.d.ts.map +1 -0
- package/lib/__tests__/mockDataOperationExecutor.spec.js +51 -0
- package/lib/__tests__/mockDataOperationExecutor.spec.js.map +1 -0
- package/lib/__tests__/mocks/mockDataverseRetrieveMultipleResponse.d.ts +17 -0
- package/lib/__tests__/mocks/mockDataverseRetrieveMultipleResponse.d.ts.map +1 -0
- package/lib/__tests__/mocks/mockDataverseRetrieveMultipleResponse.js +35 -0
- package/lib/__tests__/mocks/mockDataverseRetrieveMultipleResponse.js.map +1 -0
- package/lib/__tests__/mocks/mockLog.d.ts +31 -0
- package/lib/__tests__/mocks/mockLog.d.ts.map +1 -0
- package/lib/__tests__/mocks/mockLog.js +53 -0
- package/lib/__tests__/mocks/mockLog.js.map +1 -0
- package/lib/__tests__/mocks/mockTeamsConnectorResponse.d.ts +76 -0
- package/lib/__tests__/mocks/mockTeamsConnectorResponse.d.ts.map +1 -0
- package/lib/__tests__/mocks/mockTeamsConnectorResponse.js +81 -0
- package/lib/__tests__/mocks/mockTeamsConnectorResponse.js.map +1 -0
- package/lib/__tests__/mocks/silenceConsole.d.ts +37 -0
- package/lib/__tests__/mocks/silenceConsole.d.ts.map +1 -0
- package/lib/__tests__/mocks/silenceConsole.js +58 -0
- package/lib/__tests__/mocks/silenceConsole.js.map +1 -0
- package/lib/__tests__/powerDataRuntimeInstance.test.d.ts +5 -0
- package/lib/__tests__/powerDataRuntimeInstance.test.d.ts.map +1 -0
- package/lib/__tests__/powerDataRuntimeInstance.test.js +179 -0
- package/lib/__tests__/powerDataRuntimeInstance.test.js.map +1 -0
- package/lib/__tests__/powerDataSourcesInfoProvider.test.d.ts +5 -0
- package/lib/__tests__/powerDataSourcesInfoProvider.test.d.ts.map +1 -0
- package/lib/__tests__/powerDataSourcesInfoProvider.test.js +153 -0
- package/lib/__tests__/powerDataSourcesInfoProvider.test.js.map +1 -0
- package/lib/__tests__/runtimeClientProvider.test.d.ts +5 -0
- package/lib/__tests__/runtimeClientProvider.test.d.ts.map +1 -0
- package/lib/__tests__/runtimeClientProvider.test.js +248 -0
- package/lib/__tests__/runtimeClientProvider.test.js.map +1 -0
- package/lib/__tests__/runtimeDataClient.spec.d.ts +2 -0
- package/lib/__tests__/runtimeDataClient.spec.d.ts.map +1 -0
- package/lib/__tests__/runtimeDataClient.spec.js +351 -0
- package/lib/__tests__/runtimeDataClient.spec.js.map +1 -0
- package/lib/__tests__/runtimeDataClient.test.d.ts +2 -0
- package/lib/__tests__/runtimeDataClient.test.d.ts.map +1 -0
- package/lib/__tests__/runtimeDataClient.test.js +351 -0
- package/lib/__tests__/runtimeDataClient.test.js.map +1 -0
- package/lib/__tests__/runtimeDataOperation.test.d.ts +5 -0
- package/lib/__tests__/runtimeDataOperation.test.d.ts.map +1 -0
- package/lib/__tests__/runtimeDataOperation.test.js +234 -0
- package/lib/__tests__/runtimeDataOperation.test.js.map +1 -0
- package/lib/__tests__/runtimeMetadataClient.test.d.ts +5 -0
- package/lib/__tests__/runtimeMetadataClient.test.d.ts.map +1 -0
- package/lib/__tests__/runtimeMetadataClient.test.js +271 -0
- package/lib/__tests__/runtimeMetadataClient.test.js.map +1 -0
- package/lib/__tests__/runtimeMetadataOperations.test.d.ts +5 -0
- package/lib/__tests__/runtimeMetadataOperations.test.d.ts.map +1 -0
- package/lib/__tests__/runtimeMetadataOperations.test.js +286 -0
- package/lib/__tests__/runtimeMetadataOperations.test.js.map +1 -0
- package/lib/__tests__/serviceSchemaModelSnapshot.test.d.ts +2 -0
- package/lib/__tests__/serviceSchemaModelSnapshot.test.d.ts.map +1 -0
- package/lib/__tests__/serviceSchemaModelSnapshot.test.js +98 -0
- package/lib/__tests__/serviceSchemaModelSnapshot.test.js.map +1 -0
- package/lib/__tests__/types.spec.d.ts +5 -0
- package/lib/__tests__/types.spec.d.ts.map +1 -0
- package/lib/__tests__/types.spec.js +104 -0
- package/lib/__tests__/types.spec.js.map +1 -0
- package/lib/__tests__/utils.test.d.ts +5 -0
- package/lib/__tests__/utils.test.d.ts.map +1 -0
- package/lib/__tests__/utils.test.js +33 -0
- package/lib/__tests__/utils.test.js.map +1 -0
- package/lib/app/Lifecycle.d.ts +14 -0
- package/lib/app/Lifecycle.d.ts.map +1 -0
- package/lib/app/Lifecycle.js +37 -0
- package/lib/app/Lifecycle.js.map +1 -0
- package/lib/app/index.d.ts +5 -0
- package/lib/app/index.d.ts.map +1 -0
- package/lib/app/index.js +5 -0
- package/lib/app/index.js.map +1 -0
- package/lib/data/Data.types.d.ts +20 -0
- package/lib/data/Data.types.d.ts.map +1 -0
- package/lib/data/Data.types.js +5 -0
- package/lib/data/Data.types.js.map +1 -0
- package/lib/data/executors/index.d.ts +6 -0
- package/lib/data/executors/index.d.ts.map +1 -0
- package/lib/data/executors/index.js +5 -0
- package/lib/data/executors/index.js.map +1 -0
- package/lib/data/index.d.ts +7 -0
- package/lib/data/index.d.ts.map +1 -0
- package/lib/data/index.js +5 -0
- package/lib/data/index.js.map +1 -0
- package/lib/data/powerAppsData.d.ts +10 -0
- package/lib/data/powerAppsData.d.ts.map +1 -0
- package/lib/data/powerAppsData.js +43 -0
- package/lib/data/powerAppsData.js.map +1 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +8 -0
- package/lib/index.js.map +1 -0
- package/lib/internal/communication/CompatibleMessageReceiver.d.ts +12 -0
- package/lib/internal/communication/CompatibleMessageReceiver.d.ts.map +1 -0
- package/lib/internal/communication/CompatibleMessageReceiver.js +92 -0
- package/lib/internal/communication/CompatibleMessageReceiver.js.map +1 -0
- package/lib/internal/communication/IncompatibleMessageReceiver.d.ts +10 -0
- package/lib/internal/communication/IncompatibleMessageReceiver.d.ts.map +1 -0
- package/lib/internal/communication/IncompatibleMessageReceiver.js +13 -0
- package/lib/internal/communication/IncompatibleMessageReceiver.js.map +1 -0
- package/lib/internal/communication/MessageReceiver.Types.d.ts +18 -0
- package/lib/internal/communication/MessageReceiver.Types.d.ts.map +1 -0
- package/lib/internal/communication/MessageReceiver.Types.js +5 -0
- package/lib/internal/communication/MessageReceiver.Types.js.map +1 -0
- package/lib/internal/communication/SendMessage.d.ts +11 -0
- package/lib/internal/communication/SendMessage.d.ts.map +1 -0
- package/lib/internal/communication/SendMessage.js +32 -0
- package/lib/internal/communication/SendMessage.js.map +1 -0
- package/lib/internal/communication/SendMessageOperation.d.ts +15 -0
- package/lib/internal/communication/SendMessageOperation.d.ts.map +1 -0
- package/lib/internal/communication/SendMessageOperation.js +18 -0
- package/lib/internal/communication/SendMessageOperation.js.map +1 -0
- package/lib/internal/data/ConnectionUtils.d.ts +5 -0
- package/lib/internal/data/ConnectionUtils.d.ts.map +1 -0
- package/lib/internal/data/ConnectionUtils.js +20 -0
- package/lib/internal/data/ConnectionUtils.js.map +1 -0
- package/lib/internal/data/OperationExecutor.d.ts +18 -0
- package/lib/internal/data/OperationExecutor.d.ts.map +1 -0
- package/lib/internal/data/OperationExecutor.js +35 -0
- package/lib/internal/data/OperationExecutor.js.map +1 -0
- package/lib/internal/data/core/api/createRecord.d.ts +13 -0
- package/lib/internal/data/core/api/createRecord.d.ts.map +1 -0
- package/lib/internal/data/core/api/createRecord.js +15 -0
- package/lib/internal/data/core/api/createRecord.js.map +1 -0
- package/lib/internal/data/core/api/deleteRecord.d.ts +13 -0
- package/lib/internal/data/core/api/deleteRecord.d.ts.map +1 -0
- package/lib/internal/data/core/api/deleteRecord.js +15 -0
- package/lib/internal/data/core/api/deleteRecord.js.map +1 -0
- package/lib/internal/data/core/api/execute.d.ts +11 -0
- package/lib/internal/data/core/api/execute.d.ts.map +1 -0
- package/lib/internal/data/core/api/execute.js +13 -0
- package/lib/internal/data/core/api/execute.js.map +1 -0
- package/lib/internal/data/core/api/retrieveMultipleRecords.d.ts +13 -0
- package/lib/internal/data/core/api/retrieveMultipleRecords.d.ts.map +1 -0
- package/lib/internal/data/core/api/retrieveMultipleRecords.js +15 -0
- package/lib/internal/data/core/api/retrieveMultipleRecords.js.map +1 -0
- package/lib/internal/data/core/api/retrieveRecord.d.ts +13 -0
- package/lib/internal/data/core/api/retrieveRecord.d.ts.map +1 -0
- package/lib/internal/data/core/api/retrieveRecord.js +15 -0
- package/lib/internal/data/core/api/retrieveRecord.js.map +1 -0
- package/lib/internal/data/core/api/updateRecord.d.ts +14 -0
- package/lib/internal/data/core/api/updateRecord.d.ts.map +1 -0
- package/lib/internal/data/core/api/updateRecord.js +16 -0
- package/lib/internal/data/core/api/updateRecord.js.map +1 -0
- package/lib/internal/data/core/common/types.d.ts +230 -0
- package/lib/internal/data/core/common/types.d.ts.map +1 -0
- package/lib/internal/data/core/common/types.js +25 -0
- package/lib/internal/data/core/common/types.js.map +1 -0
- package/lib/internal/data/core/common/utils.d.ts +19 -0
- package/lib/internal/data/core/common/utils.d.ts.map +1 -0
- package/lib/internal/data/core/common/utils.js +47 -0
- package/lib/internal/data/core/common/utils.js.map +1 -0
- package/lib/internal/data/core/data/defaultOperationOrchestrator.d.ts +93 -0
- package/lib/internal/data/core/data/defaultOperationOrchestrator.d.ts.map +1 -0
- package/lib/internal/data/core/data/defaultOperationOrchestrator.js +249 -0
- package/lib/internal/data/core/data/defaultOperationOrchestrator.js.map +1 -0
- package/lib/internal/data/core/data/executors/connectorDataOperationExecutor.d.ts +160 -0
- package/lib/internal/data/core/data/executors/connectorDataOperationExecutor.d.ts.map +1 -0
- package/lib/internal/data/core/data/executors/connectorDataOperationExecutor.js +500 -0
- package/lib/internal/data/core/data/executors/connectorDataOperationExecutor.js.map +1 -0
- package/lib/internal/data/core/data/executors/dataverseDataOperationExecutor.d.ts +164 -0
- package/lib/internal/data/core/data/executors/dataverseDataOperationExecutor.d.ts.map +1 -0
- package/lib/internal/data/core/data/executors/dataverseDataOperationExecutor.js +508 -0
- package/lib/internal/data/core/data/executors/dataverseDataOperationExecutor.js.map +1 -0
- package/lib/internal/data/core/data/executors/index.d.ts +5 -0
- package/lib/internal/data/core/data/executors/index.d.ts.map +1 -0
- package/lib/internal/data/core/data/executors/index.js +5 -0
- package/lib/internal/data/core/data/executors/index.js.map +1 -0
- package/lib/internal/data/core/data/executors/mockDataOperationExecutor.d.ts +21 -0
- package/lib/internal/data/core/data/executors/mockDataOperationExecutor.d.ts.map +1 -0
- package/lib/internal/data/core/data/executors/mockDataOperationExecutor.js +75 -0
- package/lib/internal/data/core/data/executors/mockDataOperationExecutor.js.map +1 -0
- package/lib/internal/data/core/error/codes.d.ts +31 -0
- package/lib/internal/data/core/error/codes.d.ts.map +1 -0
- package/lib/internal/data/core/error/codes.js +39 -0
- package/lib/internal/data/core/error/codes.js.map +1 -0
- package/lib/internal/data/core/error/constants.d.ts +30 -0
- package/lib/internal/data/core/error/constants.d.ts.map +1 -0
- package/lib/internal/data/core/error/constants.js +33 -0
- package/lib/internal/data/core/error/constants.js.map +1 -0
- package/lib/internal/data/core/error/error.d.ts +8 -0
- package/lib/internal/data/core/error/error.d.ts.map +1 -0
- package/lib/internal/data/core/error/error.js +8 -0
- package/lib/internal/data/core/error/error.js.map +1 -0
- package/lib/internal/data/core/error/messages.d.ts +24 -0
- package/lib/internal/data/core/error/messages.d.ts.map +1 -0
- package/lib/internal/data/core/error/messages.js +55 -0
- package/lib/internal/data/core/error/messages.js.map +1 -0
- package/lib/internal/data/core/error/types.d.ts +30 -0
- package/lib/internal/data/core/error/types.d.ts.map +1 -0
- package/lib/internal/data/core/error/types.js +28 -0
- package/lib/internal/data/core/error/types.js.map +1 -0
- package/lib/internal/data/core/error/util.d.ts +24 -0
- package/lib/internal/data/core/error/util.d.ts.map +1 -0
- package/lib/internal/data/core/error/util.js +71 -0
- package/lib/internal/data/core/error/util.js.map +1 -0
- package/lib/internal/data/core/metadata/runtimeDataSourceService.d.ts +65 -0
- package/lib/internal/data/core/metadata/runtimeDataSourceService.d.ts.map +1 -0
- package/lib/internal/data/core/metadata/runtimeDataSourceService.js +101 -0
- package/lib/internal/data/core/metadata/runtimeDataSourceService.js.map +1 -0
- package/lib/internal/data/core/metadata/runtimeMetadataOperations.d.ts +17 -0
- package/lib/internal/data/core/metadata/runtimeMetadataOperations.d.ts.map +1 -0
- package/lib/internal/data/core/metadata/runtimeMetadataOperations.js +34 -0
- package/lib/internal/data/core/metadata/runtimeMetadataOperations.js.map +1 -0
- package/lib/internal/data/core/runtime/getRuntimeContext.d.ts +11 -0
- package/lib/internal/data/core/runtime/getRuntimeContext.d.ts.map +1 -0
- package/lib/internal/data/core/runtime/getRuntimeContext.js +16 -0
- package/lib/internal/data/core/runtime/getRuntimeContext.js.map +1 -0
- package/lib/internal/data/core/runtime/initializeRuntime.d.ts +13 -0
- package/lib/internal/data/core/runtime/initializeRuntime.d.ts.map +1 -0
- package/lib/internal/data/core/runtime/initializeRuntime.js +38 -0
- package/lib/internal/data/core/runtime/initializeRuntime.js.map +1 -0
- package/lib/internal/data/core/runtime/powerDataRuntime.d.ts +68 -0
- package/lib/internal/data/core/runtime/powerDataRuntime.d.ts.map +1 -0
- package/lib/internal/data/core/runtime/powerDataRuntime.js +116 -0
- package/lib/internal/data/core/runtime/powerDataRuntime.js.map +1 -0
- package/lib/internal/data/core/runtime/powerDataRuntimeInstance.d.ts +20 -0
- package/lib/internal/data/core/runtime/powerDataRuntimeInstance.d.ts.map +1 -0
- package/lib/internal/data/core/runtime/powerDataRuntimeInstance.js +36 -0
- package/lib/internal/data/core/runtime/powerDataRuntimeInstance.js.map +1 -0
- package/lib/internal/data/core/runtime/powerDataSourcesInfoProvider.d.ts +34 -0
- package/lib/internal/data/core/runtime/powerDataSourcesInfoProvider.d.ts.map +1 -0
- package/lib/internal/data/core/runtime/powerDataSourcesInfoProvider.js +45 -0
- package/lib/internal/data/core/runtime/powerDataSourcesInfoProvider.js.map +1 -0
- package/lib/internal/data/core/runtimeClient/runtimeClientProvider.d.ts +43 -0
- package/lib/internal/data/core/runtimeClient/runtimeClientProvider.d.ts.map +1 -0
- package/lib/internal/data/core/runtimeClient/runtimeClientProvider.js +87 -0
- package/lib/internal/data/core/runtimeClient/runtimeClientProvider.js.map +1 -0
- package/lib/internal/data/core/runtimeClient/runtimeDataClient.d.ts +112 -0
- package/lib/internal/data/core/runtimeClient/runtimeDataClient.d.ts.map +1 -0
- package/lib/internal/data/core/runtimeClient/runtimeDataClient.js +457 -0
- package/lib/internal/data/core/runtimeClient/runtimeDataClient.js.map +1 -0
- package/lib/internal/data/core/runtimeClient/runtimeMetadataClient.d.ts +40 -0
- package/lib/internal/data/core/runtimeClient/runtimeMetadataClient.d.ts.map +1 -0
- package/lib/internal/data/core/runtimeClient/runtimeMetadataClient.js +94 -0
- package/lib/internal/data/core/runtimeClient/runtimeMetadataClient.js.map +1 -0
- package/lib/internal/data/core/telemetry/log.d.ts +20 -0
- package/lib/internal/data/core/telemetry/log.d.ts.map +1 -0
- package/lib/internal/data/core/telemetry/log.js +85 -0
- package/lib/internal/data/core/telemetry/log.js.map +1 -0
- package/lib/internal/data/core/types/index.d.ts +164 -0
- package/lib/internal/data/core/types/index.d.ts.map +1 -0
- package/lib/internal/data/core/types/index.js +7 -0
- package/lib/internal/data/core/types/index.js.map +1 -0
- package/lib/internal/plugin/PluginCommon.d.ts +16 -0
- package/lib/internal/plugin/PluginCommon.d.ts.map +1 -0
- package/lib/internal/plugin/PluginCommon.js +116 -0
- package/lib/internal/plugin/PluginCommon.js.map +1 -0
- package/lib/internal/plugin/PluginMobile.d.ts +13 -0
- package/lib/internal/plugin/PluginMobile.d.ts.map +1 -0
- package/lib/internal/plugin/PluginMobile.js +109 -0
- package/lib/internal/plugin/PluginMobile.js.map +1 -0
- package/lib/telemetry/Logger.types.d.ts +8 -0
- package/lib/telemetry/Logger.types.d.ts.map +1 -0
- package/lib/telemetry/Logger.types.js +5 -0
- package/lib/telemetry/Logger.types.js.map +1 -0
- package/lib/telemetry/LoggerManager.d.ts +6 -0
- package/lib/telemetry/LoggerManager.d.ts.map +1 -0
- package/lib/telemetry/LoggerManager.js +28 -0
- package/lib/telemetry/LoggerManager.js.map +1 -0
- package/lib/telemetry/Metrics.types.d.ts +53 -0
- package/lib/telemetry/Metrics.types.d.ts.map +1 -0
- package/lib/telemetry/Metrics.types.js +5 -0
- package/lib/telemetry/Metrics.types.js.map +1 -0
- package/lib/telemetry/Performance.d.ts +5 -0
- package/lib/telemetry/Performance.d.ts.map +1 -0
- package/lib/telemetry/Performance.js +47 -0
- package/lib/telemetry/Performance.js.map +1 -0
- package/lib/telemetry/index.d.ts +5 -0
- package/lib/telemetry/index.d.ts.map +1 -0
- package/lib/telemetry/index.js +5 -0
- package/lib/telemetry/index.js.map +1 -0
- package/package.json +44 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
+
*/
|
|
4
|
+
import { ErrorCodes, PowerDataRuntimeError } from '../error/error';
|
|
5
|
+
/**
|
|
6
|
+
* Singleton provider for managing data sources information.
|
|
7
|
+
*/
|
|
8
|
+
class PowerDataSourcesInfoProvider {
|
|
9
|
+
static instance = null;
|
|
10
|
+
dataSourcesInfo;
|
|
11
|
+
/**
|
|
12
|
+
* Private constructor to enforce the singleton pattern.
|
|
13
|
+
* @param dataSourcesInfo The data sources information to initialize the provider with.
|
|
14
|
+
*/
|
|
15
|
+
constructor(dataSourcesInfo) {
|
|
16
|
+
this.dataSourcesInfo = dataSourcesInfo;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Retrieves the singleton instance of PowerDataSourcesInfoProvider.
|
|
20
|
+
* If the instance does not exist, it initializes it with the provided data sources info.
|
|
21
|
+
*
|
|
22
|
+
* @param dataSourcesInfo Optional parameter to initialize the instance if it doesn't exist.
|
|
23
|
+
* @returns The singleton instance of PowerDataSourcesInfoProvider.
|
|
24
|
+
* @throws Error if the instance is not initialized and no dataSourcesInfo is provided.
|
|
25
|
+
*/
|
|
26
|
+
static getInstance(dataSourcesInfo) {
|
|
27
|
+
if (!this.instance) {
|
|
28
|
+
if (!dataSourcesInfo) {
|
|
29
|
+
throw new PowerDataRuntimeError(ErrorCodes.DataSourcesInfoNotFound);
|
|
30
|
+
}
|
|
31
|
+
this.instance = new PowerDataSourcesInfoProvider(dataSourcesInfo);
|
|
32
|
+
}
|
|
33
|
+
return this.instance;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Retrieves the data sources information.
|
|
37
|
+
*
|
|
38
|
+
* @returns A promise resolving to the data sources information.
|
|
39
|
+
*/
|
|
40
|
+
async getDataSourcesInfo() {
|
|
41
|
+
return this.dataSourcesInfo;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export default PowerDataSourcesInfoProvider;
|
|
45
|
+
//# sourceMappingURL=powerDataSourcesInfoProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"powerDataSourcesInfoProvider.js","sourceRoot":"","sources":["../../../../../src/internal/data/core/runtime/powerDataSourcesInfoProvider.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,EAAE,UAAU,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAEnE;;GAEG;AACH,MAAM,4BAA4B;IACxB,MAAM,CAAC,QAAQ,GAAwC,IAAI,CAAC;IAC5D,eAAe,CAAkB;IAEzC;;;OAGG;IACH,YAAoB,eAAgC;QAClD,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;IACzC,CAAC;IAED;;;;;;;OAOG;IACI,MAAM,CAAC,WAAW,CAAC,eAAiC;QACzD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;YAClB,IAAI,CAAC,eAAe,EAAE;gBACpB,MAAM,IAAI,qBAAqB,CAAC,UAAU,CAAC,uBAAuB,CAAC,CAAC;aACrE;YACD,IAAI,CAAC,QAAQ,GAAG,IAAI,4BAA4B,CAAC,eAAe,CAAC,CAAC;SACnE;QACD,OAAO,IAAI,CAAC,QAAQ,CAAC;IACvB,CAAC;IAED;;;;OAIG;IACI,KAAK,CAAC,kBAAkB;QAC7B,OAAO,IAAI,CAAC,eAAe,CAAC;IAC9B,CAAC;;AAGH,eAAe,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
+
*/
|
|
4
|
+
import { IRuntimeClientProvider, IRuntimeDataClient, IRuntimeMetadataClient } from '../common/types';
|
|
5
|
+
import { IPowerOperationExecutor } from '../types';
|
|
6
|
+
/**
|
|
7
|
+
* RuntimeClientProvider manages the lifecycle of runtime clients for data and metadata operations.
|
|
8
|
+
* Implements a lazy initialization pattern for clients and ensures proper error handling.
|
|
9
|
+
*/
|
|
10
|
+
export declare class RuntimeClientProvider implements IRuntimeClientProvider {
|
|
11
|
+
private _dataClient;
|
|
12
|
+
private _metadataClient;
|
|
13
|
+
private readonly _operationExecutor;
|
|
14
|
+
constructor(powerOperationExecutor: IPowerOperationExecutor);
|
|
15
|
+
/**
|
|
16
|
+
* Gets or initializes the data client
|
|
17
|
+
* @throws Error if client initialization fails
|
|
18
|
+
* @returns Promise resolving to IRuntimeDataClient
|
|
19
|
+
*/
|
|
20
|
+
getDataClientAsync(): Promise<IRuntimeDataClient>;
|
|
21
|
+
/**
|
|
22
|
+
* Gets or initializes the metadata client
|
|
23
|
+
* @throws Error if client initialization fails
|
|
24
|
+
* @returns Promise resolving to IRuntimeMetadataClient
|
|
25
|
+
*/
|
|
26
|
+
getMetadataClientAsync(): Promise<IRuntimeMetadataClient>;
|
|
27
|
+
/**
|
|
28
|
+
* Initializes the data client
|
|
29
|
+
* @returns Promise resolving to IRuntimeDataClient
|
|
30
|
+
*/
|
|
31
|
+
private _initializeDataClient;
|
|
32
|
+
/**
|
|
33
|
+
* Initializes the metadata client
|
|
34
|
+
* @returns Promise resolving to IRuntimeMetadataClient
|
|
35
|
+
*/
|
|
36
|
+
private _initializeMetadataClient;
|
|
37
|
+
/**
|
|
38
|
+
* Resets both clients, forcing re-initialization on next use
|
|
39
|
+
* Useful for testing or recovering from error states
|
|
40
|
+
*/
|
|
41
|
+
reset(): void;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=runtimeClientProvider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtimeClientProvider.d.ts","sourceRoot":"","sources":["../../../../../src/internal/data/core/runtimeClient/runtimeClientProvider.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AACrG,OAAO,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAKnD;;;GAGG;AACH,qBAAa,qBAAsB,YAAW,sBAAsB;IAGlE,OAAO,CAAC,WAAW,CAAiC;IAGpD,OAAO,CAAC,eAAe,CAAqC;IAI5D,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAA0B;gBAKjD,sBAAsB,EAAE,uBAAuB;IAI3D;;;;OAIG;IACU,kBAAkB,IAAI,OAAO,CAAC,kBAAkB,CAAC;IAgB9D;;;;OAIG;IACU,sBAAsB,IAAI,OAAO,CAAC,sBAAsB,CAAC;IAgBtE;;;OAGG;YACW,qBAAqB;IAInC;;;OAGG;YACW,yBAAyB;IAIvC;;;OAGG;IACI,KAAK,IAAI,IAAI;CAIrB"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
+
*/
|
|
4
|
+
import { RuntimeDataClient } from './runtimeDataClient';
|
|
5
|
+
import { RuntimeMetadataClient } from './runtimeMetadataClient';
|
|
6
|
+
import { ErrorCodes, getErrorMessage, PowerDataRuntimeError } from '../error/error';
|
|
7
|
+
/**
|
|
8
|
+
* RuntimeClientProvider manages the lifecycle of runtime clients for data and metadata operations.
|
|
9
|
+
* Implements a lazy initialization pattern for clients and ensures proper error handling.
|
|
10
|
+
*/
|
|
11
|
+
export class RuntimeClientProvider {
|
|
12
|
+
// Private members for data and metadata clients
|
|
13
|
+
// The data client is responsible for handling data operations
|
|
14
|
+
_dataClient;
|
|
15
|
+
// The metadata client is responsible for handling metadata operations
|
|
16
|
+
_metadataClient;
|
|
17
|
+
// The operation executor is used to execute operations on the clients
|
|
18
|
+
// It is an instance of IPowerOperationExecutor, which provides the necessary methods for executing operations
|
|
19
|
+
_operationExecutor;
|
|
20
|
+
// Constructor for RuntimeClientProvider
|
|
21
|
+
// Accepts an optional IPowerOperationExecutor instance for executing operations
|
|
22
|
+
// If not provided, uses the default PowerOperationExecutor instance
|
|
23
|
+
constructor(powerOperationExecutor) {
|
|
24
|
+
this._operationExecutor = powerOperationExecutor;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Gets or initializes the data client
|
|
28
|
+
* @throws Error if client initialization fails
|
|
29
|
+
* @returns Promise resolving to IRuntimeDataClient
|
|
30
|
+
*/
|
|
31
|
+
async getDataClientAsync() {
|
|
32
|
+
try {
|
|
33
|
+
if (!this._dataClient) {
|
|
34
|
+
this._dataClient = await this._initializeDataClient();
|
|
35
|
+
}
|
|
36
|
+
if (!this._dataClient) {
|
|
37
|
+
throw new PowerDataRuntimeError(ErrorCodes.DataClientNotInitialized);
|
|
38
|
+
}
|
|
39
|
+
return this._dataClient;
|
|
40
|
+
}
|
|
41
|
+
catch (error) {
|
|
42
|
+
throw new PowerDataRuntimeError(ErrorCodes.DataClientInitFailed, getErrorMessage(error));
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Gets or initializes the metadata client
|
|
47
|
+
* @throws Error if client initialization fails
|
|
48
|
+
* @returns Promise resolving to IRuntimeMetadataClient
|
|
49
|
+
*/
|
|
50
|
+
async getMetadataClientAsync() {
|
|
51
|
+
try {
|
|
52
|
+
if (!this._metadataClient) {
|
|
53
|
+
this._metadataClient = await this._initializeMetadataClient();
|
|
54
|
+
}
|
|
55
|
+
if (!this._metadataClient) {
|
|
56
|
+
throw new PowerDataRuntimeError(ErrorCodes.MetadataClientNotInitialized);
|
|
57
|
+
}
|
|
58
|
+
return this._metadataClient;
|
|
59
|
+
}
|
|
60
|
+
catch (error) {
|
|
61
|
+
throw new PowerDataRuntimeError(ErrorCodes.MetadataClientInitFailed, getErrorMessage(error));
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Initializes the data client
|
|
66
|
+
* @returns Promise resolving to IRuntimeDataClient
|
|
67
|
+
*/
|
|
68
|
+
async _initializeDataClient() {
|
|
69
|
+
return RuntimeDataClient.createInstanceAsync(this._operationExecutor);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Initializes the metadata client
|
|
73
|
+
* @returns Promise resolving to IRuntimeMetadataClient
|
|
74
|
+
*/
|
|
75
|
+
async _initializeMetadataClient() {
|
|
76
|
+
return RuntimeMetadataClient.createInstanceAsync(this._operationExecutor);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Resets both clients, forcing re-initialization on next use
|
|
80
|
+
* Useful for testing or recovering from error states
|
|
81
|
+
*/
|
|
82
|
+
reset() {
|
|
83
|
+
this._dataClient = undefined;
|
|
84
|
+
this._metadataClient = undefined;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
//# sourceMappingURL=runtimeClientProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtimeClientProvider.js","sourceRoot":"","sources":["../../../../../src/internal/data/core/runtimeClient/runtimeClientProvider.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAEpF;;;GAGG;AACH,MAAM,OAAO,qBAAqB;IAChC,gDAAgD;IAChD,8DAA8D;IACtD,WAAW,CAAiC;IAEpD,sEAAsE;IAC9D,eAAe,CAAqC;IAE5D,sEAAsE;IACtE,8GAA8G;IAC7F,kBAAkB,CAA0B;IAE7D,wCAAwC;IACxC,gFAAgF;IAChF,oEAAoE;IACpE,YAAY,sBAA+C;QACzD,IAAI,CAAC,kBAAkB,GAAG,sBAAsB,CAAC;IACnD,CAAC;IAED;;;;OAIG;IACI,KAAK,CAAC,kBAAkB;QAC7B,IAAI;YACF,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;gBACrB,IAAI,CAAC,WAAW,GAAG,MAAM,IAAI,CAAC,qBAAqB,EAAE,CAAC;aACvD;YAED,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;gBACrB,MAAM,IAAI,qBAAqB,CAAC,UAAU,CAAC,wBAAwB,CAAC,CAAC;aACtE;YAED,OAAO,IAAI,CAAC,WAAW,CAAC;SACzB;QAAC,OAAO,KAAK,EAAE;YACd,MAAM,IAAI,qBAAqB,CAAC,UAAU,CAAC,oBAAoB,EAAE,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC;SAC1F;IACH,CAAC;IAED;;;;OAIG;IACI,KAAK,CAAC,sBAAsB;QACjC,IAAI;YACF,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE;gBACzB,IAAI,CAAC,eAAe,GAAG,MAAM,IAAI,CAAC,yBAAyB,EAAE,CAAC;aAC/D;YAED,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE;gBACzB,MAAM,IAAI,qBAAqB,CAAC,UAAU,CAAC,4BAA4B,CAAC,CAAC;aAC1E;YAED,OAAO,IAAI,CAAC,eAAe,CAAC;SAC7B;QAAC,OAAO,KAAK,EAAE;YACd,MAAM,IAAI,qBAAqB,CAAC,UAAU,CAAC,wBAAwB,EAAE,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC;SAC9F;IACH,CAAC;IAED;;;OAGG;IACK,KAAK,CAAC,qBAAqB;QACjC,OAAO,iBAAiB,CAAC,mBAAmB,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;IACxE,CAAC;IAED;;;OAGG;IACK,KAAK,CAAC,yBAAyB;QACrC,OAAO,qBAAqB,CAAC,mBAAmB,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;IAC5E,CAAC;IAED;;;OAGG;IACI,KAAK;QACV,IAAI,CAAC,WAAW,GAAG,SAAS,CAAC;QAC7B,IAAI,CAAC,eAAe,GAAG,SAAS,CAAC;IACnC,CAAC;CACF"}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
+
*/
|
|
4
|
+
import { IOperationContext, IRuntimeDataClient } from '../common/types';
|
|
5
|
+
import { HttpMethod } from '../common/types';
|
|
6
|
+
import { IOperationResult, IPowerOperationExecutor } from '../types';
|
|
7
|
+
/**
|
|
8
|
+
* RuntimeDataClient handles data operations through PowerOperationExecutor
|
|
9
|
+
*/
|
|
10
|
+
export declare class RuntimeDataClient implements IRuntimeDataClient {
|
|
11
|
+
private readonly _powerOperationExecutor;
|
|
12
|
+
private static readonly SERVICES;
|
|
13
|
+
private static readonly ACTIONS;
|
|
14
|
+
private static readonly REQUEST_SOURCE;
|
|
15
|
+
constructor(_powerOperationExecutor: IPowerOperationExecutor);
|
|
16
|
+
/**
|
|
17
|
+
* Creates a new instance of RuntimeDataClient
|
|
18
|
+
*/
|
|
19
|
+
static createInstanceAsync(powerOperationExecutor: IPowerOperationExecutor): Promise<IRuntimeDataClient>;
|
|
20
|
+
/**
|
|
21
|
+
* Creates data using POST method
|
|
22
|
+
* @param url - The URL for the request
|
|
23
|
+
* @param apiId - The API ID for authentication
|
|
24
|
+
* @param tableName - The name of the table to access
|
|
25
|
+
* @param body - The request body for the POST method
|
|
26
|
+
* @param operationName - Optional operation name for telemetry
|
|
27
|
+
* @return Promise resolving to the response data
|
|
28
|
+
* @throws Error if the request fails or the response is invalid
|
|
29
|
+
* @throws Error if the request body is invalid
|
|
30
|
+
*/
|
|
31
|
+
createDataAsync<TRequest, TResponse>(url: string, apiId: string, tableName: string, body: TRequest, context?: IOperationContext): Promise<IOperationResult<TResponse>>;
|
|
32
|
+
/**
|
|
33
|
+
* Updates data using PATCH method
|
|
34
|
+
* @param url - The URL for the request
|
|
35
|
+
* @param apiId - The API ID for authentication
|
|
36
|
+
* @param tableName - The name of the table to access
|
|
37
|
+
* @param body - The request body for the PATCH method
|
|
38
|
+
* @param operationName - Optional operation name for telemetry
|
|
39
|
+
* @return Promise resolving to the response data
|
|
40
|
+
* @throws Error if the request fails or the response is invalid
|
|
41
|
+
* @throws Error if the request body is invalid
|
|
42
|
+
*/
|
|
43
|
+
updateDataAsync<TRequest, TResponse>(url: string, apiId: string, tableName: string, body: TRequest, context?: IOperationContext): Promise<IOperationResult<TResponse>>;
|
|
44
|
+
/**
|
|
45
|
+
* Deletes data using DELETE method
|
|
46
|
+
* @param url - The URL for the request
|
|
47
|
+
* @param connectionApi - The API ID for authentication
|
|
48
|
+
* @param serviceNamespace - The name of the service namespace
|
|
49
|
+
* @param operationName - Optional operation name for telemetry
|
|
50
|
+
* @return Promise resolving to the response data
|
|
51
|
+
* @throws Error if the request fails or the response is invalid
|
|
52
|
+
*/
|
|
53
|
+
deleteDataAsync(url: string, connectionApi: string, serviceNamespace: string, context?: IOperationContext): Promise<IOperationResult<void>>;
|
|
54
|
+
/**
|
|
55
|
+
* Retrieves data using GET or POST method
|
|
56
|
+
* @param url - The URL for the request
|
|
57
|
+
* @param apiId - The API ID for authentication
|
|
58
|
+
* @param tableName - The name of the table to access
|
|
59
|
+
* @param method - The HTTP method
|
|
60
|
+
* @param body - Optional request body for POST method
|
|
61
|
+
* @param context - Optional operation context
|
|
62
|
+
* @param operationName - Optional operation name for telemetry
|
|
63
|
+
* @return Promise resolving to the response data
|
|
64
|
+
* @throws Error if the request fails or the response is invalid
|
|
65
|
+
*/
|
|
66
|
+
retrieveDataAsync<TRequest, TResponse>(url: string, apiId: string, tableName: string, method: HttpMethod, headers?: {
|
|
67
|
+
[key: string]: string;
|
|
68
|
+
}, body?: unknown, context?: IOperationContext): Promise<IOperationResult<TResponse>>;
|
|
69
|
+
/**
|
|
70
|
+
* Gets an access token for the specified API.
|
|
71
|
+
* If the API is Dataverse, retrieves a dynamic resource token; otherwise, retrieves a standard appservice API token.
|
|
72
|
+
* @param apiId - The API ID for authentication
|
|
73
|
+
* @param datasetName - Optional dataset name for Dataverse
|
|
74
|
+
* @returns Promise resolving to the access token
|
|
75
|
+
* @throws Error if token acquisition fails
|
|
76
|
+
*/
|
|
77
|
+
private _getAccessToken;
|
|
78
|
+
private _mergePreferHeaders;
|
|
79
|
+
/**
|
|
80
|
+
* Creates headers for the HTTP request.
|
|
81
|
+
* Combines default headers with any custom headers provided in the config.
|
|
82
|
+
* Custom headers are optional and take precedence over default headers.
|
|
83
|
+
* @param token - The access token for authentication
|
|
84
|
+
* @param config - The HTTP request configuration
|
|
85
|
+
* @return The headers for the request
|
|
86
|
+
* @throws Error if header creation fails
|
|
87
|
+
*/
|
|
88
|
+
private _createHeaders;
|
|
89
|
+
/**
|
|
90
|
+
* Executes an HTTP request with the given configuration
|
|
91
|
+
* @param config - The HTTP request configuration
|
|
92
|
+
* @param context - Optional operation context
|
|
93
|
+
* @return Promise resolving to the response data
|
|
94
|
+
* @throws Error if the request fails or the response is invalid
|
|
95
|
+
* @throws Error if the response content type is invalid
|
|
96
|
+
*/
|
|
97
|
+
private _executeRequest;
|
|
98
|
+
private _ensureContext;
|
|
99
|
+
/**
|
|
100
|
+
* Checks if the given URL is a Dataverse API call
|
|
101
|
+
* @param url - The URL to check
|
|
102
|
+
* @returns True if the URL is a Dataverse API call, false otherwise
|
|
103
|
+
*/
|
|
104
|
+
private _isDataverseCall;
|
|
105
|
+
/**
|
|
106
|
+
* Decodes ArrayBuffer to string, handling both browser and Node.js environments
|
|
107
|
+
* @param buffer - The ArrayBuffer to decode
|
|
108
|
+
* @returns The decoded string
|
|
109
|
+
*/
|
|
110
|
+
private _decodeArrayBuffer;
|
|
111
|
+
}
|
|
112
|
+
//# sourceMappingURL=runtimeDataClient.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtimeDataClient.d.ts","sourceRoot":"","sources":["../../../../../src/internal/data/core/runtimeClient/runtimeDataClient.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAIL,iBAAiB,EACjB,kBAAkB,EAGnB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C,OAAO,EAAE,gBAAgB,EAAE,uBAAuB,EAAqB,MAAM,UAAU,CAAC;AAWxF;;GAEG;AACH,qBAAa,iBAAkB,YAAW,kBAAkB;IAuB9C,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IApBpD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAG9B;IAKF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAI7B;IAIF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,cAAc,CAAkB;gBAI3B,uBAAuB,EAAE,uBAAuB;IAE7E;;OAEG;WACW,mBAAmB,CAC/B,sBAAsB,EAAE,uBAAuB,GAC9C,OAAO,CAAC,kBAAkB,CAAC;IAI9B;;;;;;;;;;OAUG;IACU,eAAe,CAAC,QAAQ,EAAE,SAAS,EAC9C,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,QAAQ,EACd,OAAO,CAAC,EAAE,iBAAiB,GAC1B,OAAO,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC;IA4BvC;;;;;;;;;;OAUG;IACU,eAAe,CAAC,QAAQ,EAAE,SAAS,EAC9C,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,QAAQ,EACd,OAAO,CAAC,EAAE,iBAAiB,GAC1B,OAAO,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC;IA4BvC;;;;;;;;OAQG;IACU,eAAe,CAC1B,GAAG,EAAE,MAAM,EACX,aAAa,EAAE,MAAM,EACrB,gBAAgB,EAAE,MAAM,EACxB,OAAO,CAAC,EAAE,iBAAiB,GAC1B,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAqBlC;;;;;;;;;;;OAWG;IACU,iBAAiB,CAAC,QAAQ,EAAE,SAAS,EAChD,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,UAAU,EAClB,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,EACnC,IAAI,CAAC,EAAE,OAAO,EACd,OAAO,CAAC,EAAE,iBAAiB,GAC1B,OAAO,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC;IAuBvC;;;;;;;OAOG;YACW,eAAe;IAuB7B,OAAO,CAAC,mBAAmB;IAqB3B;;;;;;;;OAQG;IACH,OAAO,CAAC,cAAc;IA+CtB;;;;;;;OAOG;YACW,eAAe;IA2I7B,OAAO,CAAC,cAAc;IAetB;;;;OAIG;IACH,OAAO,CAAC,gBAAgB;IAQxB;;;;OAIG;IACH,OAAO,CAAC,kBAAkB;CA0B3B"}
|