@mcp-consultant-tools/powerplatform 33.0.0 → 34.0.0-beta.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.
Files changed (69) hide show
  1. package/build/PowerPlatformService.d.ts +201 -0
  2. package/build/PowerPlatformService.js +305 -0
  3. package/build/PowerPlatformService.js.map +1 -0
  4. package/build/cli/commands/app-commands.d.ts +7 -0
  5. package/build/cli/commands/field-security-commands.d.ts +8 -0
  6. package/build/cli/commands/flow-commands.d.ts +7 -0
  7. package/build/cli/commands/form-commands.d.ts +7 -0
  8. package/build/cli/commands/index.d.ts +16 -0
  9. package/build/cli/commands/index.js +33 -0
  10. package/build/cli/commands/index.js.map +1 -0
  11. package/build/cli/commands/integration-commands.d.ts +7 -0
  12. package/build/cli/commands/metadata-commands.d.ts +7 -0
  13. package/build/cli/commands/plugin-commands.d.ts +7 -0
  14. package/build/cli/commands/security-commands.d.ts +7 -0
  15. package/build/cli/commands/solution-commands.d.ts +7 -0
  16. package/build/cli/output.d.ts +11 -0
  17. package/build/cli.d.ts +9 -0
  18. package/build/context-factory.d.ts +11 -0
  19. package/build/context-factory.js +39 -0
  20. package/build/context-factory.js.map +1 -0
  21. package/build/http-server.d.ts +3 -0
  22. package/build/index.d.ts +18 -0
  23. package/build/prompts/analysis-prompts.d.ts +3 -0
  24. package/build/prompts/analysis-prompts.js +286 -0
  25. package/build/prompts/analysis-prompts.js.map +1 -0
  26. package/build/prompts/entity-prompts.d.ts +3 -0
  27. package/build/prompts/entity-prompts.js +304 -0
  28. package/build/prompts/entity-prompts.js.map +1 -0
  29. package/build/prompts/index.d.ts +8 -0
  30. package/build/prompts/index.js +11 -0
  31. package/build/prompts/index.js.map +1 -0
  32. package/build/services/index.d.ts +5 -0
  33. package/build/services/index.js +5 -0
  34. package/build/services/index.js.map +1 -0
  35. package/build/tool-examples.d.ts +48 -0
  36. package/build/tools/app-tools.d.ts +3 -0
  37. package/build/tools/app-tools.js +127 -0
  38. package/build/tools/app-tools.js.map +1 -0
  39. package/build/tools/field-security-tools.d.ts +3 -0
  40. package/build/tools/field-security-tools.js +84 -0
  41. package/build/tools/field-security-tools.js.map +1 -0
  42. package/build/tools/flow-tools.d.ts +3 -0
  43. package/build/tools/flow-tools.js +374 -0
  44. package/build/tools/flow-tools.js.map +1 -0
  45. package/build/tools/form-view-tools.d.ts +3 -0
  46. package/build/tools/form-view-tools.js +162 -0
  47. package/build/tools/form-view-tools.js.map +1 -0
  48. package/build/tools/index.d.ts +14 -0
  49. package/build/tools/index.js +31 -0
  50. package/build/tools/index.js.map +1 -0
  51. package/build/tools/integration-tools.d.ts +3 -0
  52. package/build/tools/integration-tools.js +325 -0
  53. package/build/tools/integration-tools.js.map +1 -0
  54. package/build/tools/metadata-tools.d.ts +3 -0
  55. package/build/tools/metadata-tools.js +166 -0
  56. package/build/tools/metadata-tools.js.map +1 -0
  57. package/build/tools/plugin-tools.d.ts +3 -0
  58. package/build/tools/plugin-tools.js +138 -0
  59. package/build/tools/plugin-tools.js.map +1 -0
  60. package/build/tools/security-tools.d.ts +3 -0
  61. package/build/tools/security-tools.js +188 -0
  62. package/build/tools/security-tools.js.map +1 -0
  63. package/build/tools/solution-tools.d.ts +3 -0
  64. package/build/tools/solution-tools.js +318 -0
  65. package/build/tools/solution-tools.js.map +1 -0
  66. package/build/types.d.ts +9 -0
  67. package/build/types.js +2 -0
  68. package/build/types.js.map +1 -0
  69. package/package.json +2 -2
@@ -0,0 +1,201 @@
1
+ /**
2
+ * PowerPlatformService - Slim Read-Only Facade
3
+ *
4
+ * This is a facade that delegates to services in @mcp-consultant-tools/powerplatform-core.
5
+ * It provides READ-ONLY access to PowerPlatform/Dataverse entities.
6
+ *
7
+ * For data CRUD operations, use @mcp-consultant-tools/powerplatform-data.
8
+ * For customization operations, use @mcp-consultant-tools/powerplatform-customization.
9
+ */
10
+ import { type PowerPlatformConfig, type ApiCollectionResponse, type FlowFilterOptions, type FlowListResult, type FlowSummary, type FlowRunFilterOptions, type FlowRunsResult, type BestPracticesValidationResult, type DbmlGeneratorOptions, type DbmlResult, type ServiceEndpointsResult, type ServiceEndpointsValidatedResult, type EnvironmentVariablesResult, type WebhookRegistrationsResult, type FlowComplexityResult_Full, type IntegrationAuditReport, type ConnectionReferencesResult, type SecurityRolesResult, type SecurityRolePrivilegesResult, type SecurityRolesBySolutionResult, type FieldSecurityProfileSummary, type FieldSecurityProfileDetail, type SecuredColumnInfo, type AuthProvider } from '@mcp-consultant-tools/powerplatform-core';
11
+ export type { PowerPlatformConfig, ApiCollectionResponse, FlowFilterOptions, FlowListResult, FlowSummary, BestPracticesValidationResult, DbmlGeneratorOptions, DbmlResult, ServiceEndpointsResult, ServiceEndpointsValidatedResult, EnvironmentVariablesResult, WebhookRegistrationsResult, FlowComplexityResult_Full, IntegrationAuditReport, ConnectionReferencesResult, SecurityRolesResult, SecurityRolePrivilegesResult, SecurityRolesBySolutionResult, FieldSecurityProfileSummary, FieldSecurityProfileDetail, SecuredColumnInfo, };
12
+ export declare class PowerPlatformService {
13
+ private client;
14
+ private metadata;
15
+ private plugin;
16
+ private flow;
17
+ private workflow;
18
+ private businessRule;
19
+ private app;
20
+ private validation;
21
+ private dbmlGenerator;
22
+ private form;
23
+ private view;
24
+ private webResource;
25
+ private solution;
26
+ private dependency;
27
+ private publishing;
28
+ private relationship;
29
+ private integrationAudit;
30
+ private connectionReference;
31
+ private securityRole;
32
+ private fieldSecurity;
33
+ constructor(config: PowerPlatformConfig, authProvider?: AuthProvider);
34
+ getAuthMode(): 'service-principal' | 'interactive';
35
+ getUserInfo(): Promise<{
36
+ name: string;
37
+ email: string;
38
+ oid: string;
39
+ } | null>;
40
+ logout(): Promise<void>;
41
+ getEntityMetadata(entityName: string): Promise<unknown>;
42
+ getEntityAttributes(entityName: string, options?: {
43
+ prefix?: string;
44
+ attributeType?: string;
45
+ maxAttributes?: number;
46
+ }): Promise<{
47
+ value: unknown[];
48
+ hasMore: boolean;
49
+ returnedCount: number;
50
+ totalBeforeFilter?: number;
51
+ }>;
52
+ getEntityAttribute(entityName: string, attributeName: string): Promise<unknown>;
53
+ getEntityRelationships(entityName: string): Promise<{
54
+ oneToMany: ApiCollectionResponse<unknown>;
55
+ manyToMany: ApiCollectionResponse<unknown>;
56
+ }>;
57
+ getGlobalOptionSet(optionSetName: string): Promise<unknown>;
58
+ getGlobalOptionSets(options?: {
59
+ maxRecords?: number;
60
+ prefix?: string;
61
+ }): Promise<{
62
+ value: unknown[];
63
+ hasMore: boolean;
64
+ totalCount: number;
65
+ }>;
66
+ getPluginAssemblies(includeManaged?: boolean, maxRecords?: number): Promise<{
67
+ totalCount: number;
68
+ assemblies: unknown[];
69
+ }>;
70
+ getPluginAssemblyComplete(assemblyName: string, includeDisabled?: boolean): Promise<{
71
+ assembly: unknown;
72
+ pluginTypes: unknown[];
73
+ steps: unknown[];
74
+ validation: {
75
+ hasDisabledSteps: boolean;
76
+ hasAsyncSteps: boolean;
77
+ hasSyncSteps: boolean;
78
+ stepsWithoutFilteringAttributes: string[];
79
+ stepsWithoutImages: string[];
80
+ potentialIssues: string[];
81
+ };
82
+ }>;
83
+ getEntityPluginPipeline(entityName: string, messageFilter?: string, includeDisabled?: boolean): Promise<{
84
+ entity: string;
85
+ messages: unknown[];
86
+ steps: unknown[];
87
+ executionOrder: string[];
88
+ }>;
89
+ getPluginTraceLogs(options: {
90
+ entityName?: string;
91
+ messageName?: string;
92
+ correlationId?: string;
93
+ pluginStepId?: string;
94
+ exceptionOnly?: boolean;
95
+ hoursBack?: number;
96
+ maxRecords?: number;
97
+ }): Promise<{
98
+ totalCount: number;
99
+ logs: unknown[];
100
+ }>;
101
+ getFlows(options?: FlowFilterOptions): Promise<FlowListResult>;
102
+ searchWorkflows(options?: {
103
+ name?: string;
104
+ primaryEntity?: string;
105
+ description?: string;
106
+ category?: number;
107
+ statecode?: number;
108
+ includeDescription?: boolean;
109
+ maxResults?: number;
110
+ }): Promise<{
111
+ totalCount: number;
112
+ hasMore: boolean;
113
+ requestedMax: number;
114
+ workflows: unknown[];
115
+ }>;
116
+ getFlowDefinition(flowId: string, summary?: boolean): Promise<unknown>;
117
+ getFlowRuns(flowId: string, options?: FlowRunFilterOptions): Promise<FlowRunsResult>;
118
+ getFlowRunDetails(flowId: string, runId: string): Promise<unknown>;
119
+ getWorkflows(activeOnly?: boolean, maxRecords?: number): Promise<{
120
+ totalCount: number;
121
+ hasMore: boolean;
122
+ requestedMax: number;
123
+ workflows: unknown[];
124
+ }>;
125
+ getWorkflowDefinition(workflowId: string, summary?: boolean): Promise<unknown>;
126
+ getBusinessRules(activeOnly?: boolean, maxRecords?: number): Promise<{
127
+ totalCount: number;
128
+ businessRules: unknown[];
129
+ }>;
130
+ getBusinessRule(workflowId: string): Promise<unknown>;
131
+ getApps(activeOnly?: boolean, maxRecords?: number, includeUnpublished?: boolean, solutionUniqueName?: string): Promise<{
132
+ totalCount: number;
133
+ apps: unknown[];
134
+ filters: {
135
+ activeOnly: boolean;
136
+ includeUnpublished: boolean;
137
+ solutionUniqueName: string;
138
+ };
139
+ }>;
140
+ getApp(appId: string): Promise<unknown>;
141
+ getAppComponents(appId: string): Promise<{
142
+ totalCount: number;
143
+ components: unknown[];
144
+ groupedByType: Record<string, unknown[]>;
145
+ }>;
146
+ getAppSitemap(appId: string): Promise<unknown>;
147
+ getForms(entityLogicalName: string): Promise<unknown>;
148
+ getViews(entityLogicalName: string): Promise<unknown>;
149
+ getViewFetchXml(viewId: string): Promise<unknown>;
150
+ getWebResource(webResourceId: string): Promise<unknown>;
151
+ getWebResources(nameFilter?: string): Promise<unknown>;
152
+ getWebResourceDependencies(webResourceId: string): Promise<unknown>;
153
+ getPublishers(): Promise<unknown>;
154
+ getSolutions(): Promise<unknown>;
155
+ getSolution(uniqueName: string): Promise<unknown>;
156
+ getSolutionComponents(solutionUniqueName: string): Promise<unknown>;
157
+ checkDependencies(componentId: string, componentType: number): Promise<unknown>;
158
+ checkDeleteEligibility(componentId: string, componentType: number): Promise<{
159
+ canDelete: boolean;
160
+ dependencies: unknown[];
161
+ error?: string;
162
+ }>;
163
+ checkComponentDependencies(componentId: string, componentType: number): Promise<unknown>;
164
+ checkUnpublishedChanges(): Promise<unknown>;
165
+ previewUnpublishedChanges(): Promise<unknown>;
166
+ validateBestPractices(solutionUniqueName: string | undefined, entityLogicalNames: string[] | undefined, publisherPrefix: string, recentDays?: number, includeRefDataTables?: boolean, rules?: string[], maxEntities?: number, requiredColumns?: string[]): Promise<BestPracticesValidationResult>;
167
+ validateSchemaName(schemaName: string, prefix: string): {
168
+ valid: boolean;
169
+ errors: string[];
170
+ };
171
+ generateDbmlSchema(options: DbmlGeneratorOptions): Promise<DbmlResult>;
172
+ getServiceEndpoints(maxRecords?: number, excludeOotb?: boolean): Promise<ServiceEndpointsResult>;
173
+ getServiceEndpointsValidated(maxRecords?: number, requiredUrlStrings?: string[], excludeOotb?: boolean): Promise<ServiceEndpointsValidatedResult>;
174
+ getEnvironmentVariables(maxRecords?: number, requiredUrlStrings?: string[], excludeOotb?: boolean): Promise<EnvironmentVariablesResult>;
175
+ getWebhookRegistrations(maxRecords?: number, excludeOotb?: boolean): Promise<WebhookRegistrationsResult>;
176
+ analyzeFlowComplexity(flowId?: string, maxFlows?: number, excludeOotb?: boolean): Promise<FlowComplexityResult_Full>;
177
+ generateIntegrationAuditReport(maxFlows?: number, requiredUrlStrings?: string[], outputFormat?: 'summary' | 'full', excludeOotb?: boolean, maxRecords?: number): Promise<IntegrationAuditReport>;
178
+ getConnectionReferences(options?: {
179
+ maxRecords?: number;
180
+ managedOnly?: boolean;
181
+ hasConnection?: boolean;
182
+ }): Promise<ConnectionReferencesResult>;
183
+ getSecurityRoles(options?: {
184
+ solutionUniqueName?: string;
185
+ excludeSystemRoles?: boolean;
186
+ maxRecords?: number;
187
+ }): Promise<SecurityRolesResult>;
188
+ getSecurityRolePrivileges(options: {
189
+ roleId: string;
190
+ entityFilter?: string;
191
+ accessRightFilter?: string;
192
+ }): Promise<SecurityRolePrivilegesResult>;
193
+ getSecurityRolesBySolution(options: {
194
+ solutionUniqueName: string;
195
+ includePrivileges?: boolean;
196
+ }): Promise<SecurityRolesBySolutionResult>;
197
+ listFieldSecurityProfiles(namePattern?: string): Promise<FieldSecurityProfileSummary[]>;
198
+ getFieldSecurityProfile(fieldSecurityProfileId: string): Promise<FieldSecurityProfileDetail>;
199
+ getSecuredColumns(entityLogicalName: string): Promise<SecuredColumnInfo[]>;
200
+ }
201
+ //# sourceMappingURL=PowerPlatformService.d.ts.map
@@ -0,0 +1,305 @@
1
+ /**
2
+ * PowerPlatformService - Slim Read-Only Facade
3
+ *
4
+ * This is a facade that delegates to services in @mcp-consultant-tools/powerplatform-core.
5
+ * It provides READ-ONLY access to PowerPlatform/Dataverse entities.
6
+ *
7
+ * For data CRUD operations, use @mcp-consultant-tools/powerplatform-data.
8
+ * For customization operations, use @mcp-consultant-tools/powerplatform-customization.
9
+ */
10
+ import {
11
+ // Client and types
12
+ PowerPlatformClient,
13
+ // Read-only services
14
+ MetadataService, PluginService, FlowService, WorkflowService, BusinessRuleService, AppService, ValidationService, DbmlGenerator, IntegrationAuditService, ConnectionReferenceService, SecurityRoleService, FieldSecurityService,
15
+ // Additional services for read-only operations
16
+ FormService, ViewService, WebResourceService, SolutionService, DependencyService, PublishingService, RelationshipService, createAuthProvider, } from '@mcp-consultant-tools/powerplatform-core';
17
+ export class PowerPlatformService {
18
+ client;
19
+ metadata;
20
+ plugin;
21
+ flow;
22
+ workflow;
23
+ businessRule;
24
+ app;
25
+ validation;
26
+ dbmlGenerator;
27
+ form;
28
+ view;
29
+ webResource;
30
+ solution;
31
+ dependency;
32
+ publishing;
33
+ relationship;
34
+ integrationAudit;
35
+ connectionReference;
36
+ securityRole;
37
+ fieldSecurity;
38
+ constructor(config, authProvider) {
39
+ // Create auth provider if not provided
40
+ const auth = authProvider ||
41
+ createAuthProvider({
42
+ organizationUrl: config.organizationUrl,
43
+ clientId: config.clientId,
44
+ clientSecret: config.clientSecret,
45
+ tenantId: config.tenantId,
46
+ });
47
+ // Initialize client and services
48
+ this.client = new PowerPlatformClient(config, auth);
49
+ this.metadata = new MetadataService(this.client);
50
+ this.plugin = new PluginService(this.client);
51
+ this.flow = new FlowService(this.client);
52
+ this.workflow = new WorkflowService(this.client);
53
+ this.businessRule = new BusinessRuleService(this.client);
54
+ this.app = new AppService(this.client);
55
+ this.validation = new ValidationService(this.client);
56
+ this.dbmlGenerator = new DbmlGenerator(this.client);
57
+ this.form = new FormService(this.client);
58
+ this.view = new ViewService(this.client);
59
+ this.webResource = new WebResourceService(this.client);
60
+ this.solution = new SolutionService(this.client);
61
+ this.dependency = new DependencyService(this.client);
62
+ this.publishing = new PublishingService(this.client);
63
+ this.relationship = new RelationshipService(this.client);
64
+ this.integrationAudit = new IntegrationAuditService(this.client);
65
+ this.connectionReference = new ConnectionReferenceService(this.client);
66
+ this.securityRole = new SecurityRoleService(this.client);
67
+ this.fieldSecurity = new FieldSecurityService(this.client);
68
+ }
69
+ // =====================================================
70
+ // AUTH METHODS
71
+ // =====================================================
72
+ getAuthMode() {
73
+ return this.client.getAuthMode();
74
+ }
75
+ async getUserInfo() {
76
+ return this.client.getUserInfo();
77
+ }
78
+ async logout() {
79
+ return this.client.logout();
80
+ }
81
+ // =====================================================
82
+ // METADATA METHODS (MetadataService)
83
+ // =====================================================
84
+ async getEntityMetadata(entityName) {
85
+ return this.metadata.getEntityMetadata(entityName);
86
+ }
87
+ async getEntityAttributes(entityName, options) {
88
+ return this.metadata.getEntityAttributes(entityName, options);
89
+ }
90
+ async getEntityAttribute(entityName, attributeName) {
91
+ return this.metadata.getEntityAttribute(entityName, attributeName);
92
+ }
93
+ async getEntityRelationships(entityName) {
94
+ return this.metadata.getEntityRelationships(entityName);
95
+ }
96
+ async getGlobalOptionSet(optionSetName) {
97
+ return this.metadata.getGlobalOptionSet(optionSetName);
98
+ }
99
+ async getGlobalOptionSets(options) {
100
+ return this.metadata.getGlobalOptionSets(options);
101
+ }
102
+ // =====================================================
103
+ // PLUGIN METHODS (PluginService)
104
+ // =====================================================
105
+ async getPluginAssemblies(includeManaged = false, maxRecords = 100) {
106
+ return this.plugin.getPluginAssemblies(includeManaged, maxRecords);
107
+ }
108
+ async getPluginAssemblyComplete(assemblyName, includeDisabled = false) {
109
+ return this.plugin.getPluginAssemblyComplete(assemblyName, includeDisabled);
110
+ }
111
+ async getEntityPluginPipeline(entityName, messageFilter, includeDisabled = false) {
112
+ return this.plugin.getEntityPluginPipeline(entityName, messageFilter, includeDisabled);
113
+ }
114
+ async getPluginTraceLogs(options) {
115
+ return this.plugin.getPluginTraceLogs(options);
116
+ }
117
+ // =====================================================
118
+ // FLOW METHODS (FlowService)
119
+ // =====================================================
120
+ async getFlows(options = {}) {
121
+ return this.flow.getFlows(options);
122
+ }
123
+ async searchWorkflows(options) {
124
+ return this.flow.searchWorkflows(options);
125
+ }
126
+ async getFlowDefinition(flowId, summary = false) {
127
+ return this.flow.getFlowDefinition(flowId, summary);
128
+ }
129
+ async getFlowRuns(flowId, options = {}) {
130
+ return this.flow.getFlowRuns(flowId, options);
131
+ }
132
+ async getFlowRunDetails(flowId, runId) {
133
+ return this.flow.getFlowRunDetails(flowId, runId);
134
+ }
135
+ // =====================================================
136
+ // WORKFLOW METHODS (WorkflowService)
137
+ // =====================================================
138
+ async getWorkflows(activeOnly = false, maxRecords = 25) {
139
+ return this.workflow.getWorkflows(activeOnly, maxRecords);
140
+ }
141
+ async getWorkflowDefinition(workflowId, summary = false) {
142
+ return this.workflow.getWorkflowDefinition(workflowId, summary);
143
+ }
144
+ // =====================================================
145
+ // BUSINESS RULE METHODS (BusinessRuleService)
146
+ // =====================================================
147
+ async getBusinessRules(activeOnly = false, maxRecords = 100) {
148
+ return this.businessRule.getBusinessRules(activeOnly, maxRecords);
149
+ }
150
+ async getBusinessRule(workflowId) {
151
+ return this.businessRule.getBusinessRule(workflowId);
152
+ }
153
+ // =====================================================
154
+ // APP METHODS (AppService)
155
+ // =====================================================
156
+ async getApps(activeOnly = false, maxRecords = 100, includeUnpublished = true, solutionUniqueName) {
157
+ return this.app.getApps(activeOnly, maxRecords, includeUnpublished, solutionUniqueName);
158
+ }
159
+ async getApp(appId) {
160
+ return this.app.getApp(appId);
161
+ }
162
+ async getAppComponents(appId) {
163
+ return this.app.getAppComponents(appId);
164
+ }
165
+ async getAppSitemap(appId) {
166
+ return this.app.getAppSitemap(appId);
167
+ }
168
+ // =====================================================
169
+ // FORM METHODS (FormService) - Read-only
170
+ // =====================================================
171
+ async getForms(entityLogicalName) {
172
+ return this.form.getForms(entityLogicalName);
173
+ }
174
+ // =====================================================
175
+ // VIEW METHODS (ViewService) - Read-only
176
+ // =====================================================
177
+ async getViews(entityLogicalName) {
178
+ return this.view.getViews(entityLogicalName);
179
+ }
180
+ async getViewFetchXml(viewId) {
181
+ return this.view.getViewFetchXml(viewId);
182
+ }
183
+ // =====================================================
184
+ // WEB RESOURCE METHODS (WebResourceService) - Read-only
185
+ // =====================================================
186
+ async getWebResource(webResourceId) {
187
+ return this.webResource.getWebResource(webResourceId);
188
+ }
189
+ async getWebResources(nameFilter) {
190
+ return this.webResource.getWebResources(nameFilter);
191
+ }
192
+ async getWebResourceDependencies(webResourceId) {
193
+ return this.webResource.getWebResourceDependencies(webResourceId);
194
+ }
195
+ // =====================================================
196
+ // SOLUTION METHODS (SolutionService) - Read-only
197
+ // =====================================================
198
+ async getPublishers() {
199
+ return this.solution.getPublishers();
200
+ }
201
+ async getSolutions() {
202
+ return this.solution.getSolutions();
203
+ }
204
+ async getSolution(uniqueName) {
205
+ return this.solution.getSolution(uniqueName);
206
+ }
207
+ async getSolutionComponents(solutionUniqueName) {
208
+ return this.solution.getSolutionComponents(solutionUniqueName);
209
+ }
210
+ // =====================================================
211
+ // DEPENDENCY METHODS (DependencyService) - Read-only
212
+ // =====================================================
213
+ async checkDependencies(componentId, componentType) {
214
+ return this.dependency.checkDependencies(componentId, componentType);
215
+ }
216
+ async checkDeleteEligibility(componentId, componentType) {
217
+ return this.dependency.checkDeleteEligibility(componentId, componentType);
218
+ }
219
+ async checkComponentDependencies(componentId, componentType) {
220
+ return this.dependency.checkComponentDependencies(componentId, componentType);
221
+ }
222
+ // =====================================================
223
+ // PUBLISHING METHODS (PublishingService) - Read-only
224
+ // =====================================================
225
+ async checkUnpublishedChanges() {
226
+ return this.publishing.checkUnpublishedChanges();
227
+ }
228
+ async previewUnpublishedChanges() {
229
+ return this.publishing.previewUnpublishedChanges();
230
+ }
231
+ // =====================================================
232
+ // VALIDATION METHODS (ValidationService)
233
+ // =====================================================
234
+ async validateBestPractices(solutionUniqueName, entityLogicalNames, publisherPrefix, recentDays = 30, includeRefDataTables = true, rules = [
235
+ 'prefix',
236
+ 'lowercase',
237
+ 'lookup',
238
+ 'optionset',
239
+ 'required-column',
240
+ 'entity-icon',
241
+ ], maxEntities = 0, requiredColumns = ['{prefix}updatedbyprocess']) {
242
+ return this.validation.validateBestPractices(solutionUniqueName, entityLogicalNames, publisherPrefix, recentDays, includeRefDataTables, rules, maxEntities, requiredColumns);
243
+ }
244
+ validateSchemaName(schemaName, prefix) {
245
+ return this.validation.validateSchemaName(schemaName, prefix);
246
+ }
247
+ // =====================================================
248
+ // DBML GENERATION METHODS (DbmlGenerator)
249
+ // =====================================================
250
+ async generateDbmlSchema(options) {
251
+ return this.dbmlGenerator.generate(options);
252
+ }
253
+ // =====================================================
254
+ // INTEGRATION AUDIT METHODS (IntegrationAuditService)
255
+ // =====================================================
256
+ async getServiceEndpoints(maxRecords = 100, excludeOotb = true) {
257
+ return this.integrationAudit.getServiceEndpoints(maxRecords, excludeOotb);
258
+ }
259
+ async getServiceEndpointsValidated(maxRecords = 100, requiredUrlStrings, excludeOotb = true) {
260
+ return this.integrationAudit.getServiceEndpointsValidated(maxRecords, requiredUrlStrings, excludeOotb);
261
+ }
262
+ async getEnvironmentVariables(maxRecords = 500, requiredUrlStrings, excludeOotb = true) {
263
+ return this.integrationAudit.getEnvironmentVariables(maxRecords, requiredUrlStrings, excludeOotb);
264
+ }
265
+ async getWebhookRegistrations(maxRecords = 100, excludeOotb = true) {
266
+ return this.integrationAudit.getWebhookRegistrations(maxRecords, excludeOotb);
267
+ }
268
+ async analyzeFlowComplexity(flowId, maxFlows = 0, excludeOotb = true) {
269
+ return this.integrationAudit.analyzeFlowComplexity(flowId, maxFlows, excludeOotb);
270
+ }
271
+ async generateIntegrationAuditReport(maxFlows = 0, requiredUrlStrings, outputFormat, excludeOotb = true, maxRecords = 100) {
272
+ return this.integrationAudit.generateAuditReport(maxFlows, requiredUrlStrings, outputFormat, excludeOotb, maxRecords);
273
+ }
274
+ // =====================================================
275
+ // CONNECTION REFERENCE METHODS (ConnectionReferenceService)
276
+ // =====================================================
277
+ async getConnectionReferences(options) {
278
+ return this.connectionReference.getConnectionReferences(options);
279
+ }
280
+ // =====================================================
281
+ // SECURITY ROLE METHODS (SecurityRoleService)
282
+ // =====================================================
283
+ async getSecurityRoles(options) {
284
+ return this.securityRole.getSecurityRoles(options);
285
+ }
286
+ async getSecurityRolePrivileges(options) {
287
+ return this.securityRole.getSecurityRolePrivileges(options);
288
+ }
289
+ async getSecurityRolesBySolution(options) {
290
+ return this.securityRole.getSecurityRolesBySolution(options);
291
+ }
292
+ // =====================================================
293
+ // FIELD SECURITY METHODS (read-only)
294
+ // =====================================================
295
+ async listFieldSecurityProfiles(namePattern) {
296
+ return this.fieldSecurity.listFieldSecurityProfiles(namePattern);
297
+ }
298
+ async getFieldSecurityProfile(fieldSecurityProfileId) {
299
+ return this.fieldSecurity.getFieldSecurityProfile(fieldSecurityProfileId);
300
+ }
301
+ async getSecuredColumns(entityLogicalName) {
302
+ return this.fieldSecurity.getSecuredColumns(entityLogicalName);
303
+ }
304
+ }
305
+ //# sourceMappingURL=PowerPlatformService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PowerPlatformService.js","sourceRoot":"","sources":["../src/PowerPlatformService.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * App CLI Commands - 4 commands for model-driven app inspection
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerAppCommands(program: Command, ctx: ServiceContext): void;
7
+ //# sourceMappingURL=app-commands.d.ts.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Field Security CLI Commands (read-only) - 3 commands
3
+ * Subcommand group: `fsp`
4
+ */
5
+ import type { Command } from 'commander';
6
+ import type { ServiceContext } from '../../types.js';
7
+ export declare function registerFieldSecurityCommands(program: Command, ctx: ServiceContext): void;
8
+ //# sourceMappingURL=field-security-commands.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Flow CLI Commands - 9 commands for flow/workflow/business rule inspection
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerFlowCommands(program: Command, ctx: ServiceContext): void;
7
+ //# sourceMappingURL=flow-commands.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Form/View CLI Commands - 7 commands for forms, views, and web resources
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerFormCommands(program: Command, ctx: ServiceContext): void;
7
+ //# sourceMappingURL=form-commands.d.ts.map
@@ -0,0 +1,16 @@
1
+ /**
2
+ * CLI Commands barrel export + combined registration
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerAllCommands(program: Command, ctx: ServiceContext): void;
7
+ export { registerMetadataCommands } from './metadata-commands.js';
8
+ export { registerPluginCommands } from './plugin-commands.js';
9
+ export { registerFlowCommands } from './flow-commands.js';
10
+ export { registerAppCommands } from './app-commands.js';
11
+ export { registerFormCommands } from './form-commands.js';
12
+ export { registerSolutionCommands } from './solution-commands.js';
13
+ export { registerIntegrationCommands } from './integration-commands.js';
14
+ export { registerSecurityCommands } from './security-commands.js';
15
+ export { registerFieldSecurityCommands } from './field-security-commands.js';
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,33 @@
1
+ /**
2
+ * CLI Commands barrel export + combined registration
3
+ */
4
+ import { registerMetadataCommands } from './metadata-commands.js';
5
+ import { registerPluginCommands } from './plugin-commands.js';
6
+ import { registerFlowCommands } from './flow-commands.js';
7
+ import { registerAppCommands } from './app-commands.js';
8
+ import { registerFormCommands } from './form-commands.js';
9
+ import { registerSolutionCommands } from './solution-commands.js';
10
+ import { registerIntegrationCommands } from './integration-commands.js';
11
+ import { registerSecurityCommands } from './security-commands.js';
12
+ import { registerFieldSecurityCommands } from './field-security-commands.js';
13
+ export function registerAllCommands(program, ctx) {
14
+ registerMetadataCommands(program, ctx);
15
+ registerPluginCommands(program, ctx);
16
+ registerFlowCommands(program, ctx);
17
+ registerAppCommands(program, ctx);
18
+ registerFormCommands(program, ctx);
19
+ registerSolutionCommands(program, ctx);
20
+ registerIntegrationCommands(program, ctx);
21
+ registerSecurityCommands(program, ctx);
22
+ registerFieldSecurityCommands(program, ctx);
23
+ }
24
+ export { registerMetadataCommands } from './metadata-commands.js';
25
+ export { registerPluginCommands } from './plugin-commands.js';
26
+ export { registerFlowCommands } from './flow-commands.js';
27
+ export { registerAppCommands } from './app-commands.js';
28
+ export { registerFormCommands } from './form-commands.js';
29
+ export { registerSolutionCommands } from './solution-commands.js';
30
+ export { registerIntegrationCommands } from './integration-commands.js';
31
+ export { registerSecurityCommands } from './security-commands.js';
32
+ export { registerFieldSecurityCommands } from './field-security-commands.js';
33
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/cli/commands/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,2BAA2B,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,6BAA6B,EAAE,MAAM,8BAA8B,CAAC;AAE7E,MAAM,UAAU,mBAAmB,CAAC,OAAgB,EAAE,GAAmB;IACvE,wBAAwB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IACvC,sBAAsB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IACrC,oBAAoB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IACnC,mBAAmB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IAClC,oBAAoB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IACnC,wBAAwB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IACvC,2BAA2B,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IAC1C,wBAAwB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IACvC,6BAA6B,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;AAC9C,CAAC;AAED,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,2BAA2B,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,6BAA6B,EAAE,MAAM,8BAA8B,CAAC"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Integration CLI Commands - 5 commands for integration audit and environment variables
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerIntegrationCommands(program: Command, ctx: ServiceContext): void;
7
+ //# sourceMappingURL=integration-commands.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Metadata CLI Commands - 5 commands for entity metadata inspection
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerMetadataCommands(program: Command, ctx: ServiceContext): void;
7
+ //# sourceMappingURL=metadata-commands.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Plugin CLI Commands - 4 commands for plugin inspection
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerPluginCommands(program: Command, ctx: ServiceContext): void;
7
+ //# sourceMappingURL=plugin-commands.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Security CLI Commands - 4 commands for connection references and security roles
3
+ */
4
+ import type { Command } from 'commander';
5
+ import type { ServiceContext } from '../../types.js';
6
+ export declare function registerSecurityCommands(program: Command, ctx: ServiceContext): void;
7
+ //# sourceMappingURL=security-commands.d.ts.map