@mcp-consultant-tools/powerplatform-customization 2.0.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.
@@ -0,0 +1,660 @@
1
+ export interface PowerPlatformConfig {
2
+ organizationUrl: string;
3
+ clientId: string;
4
+ clientSecret: string;
5
+ tenantId: string;
6
+ }
7
+ export interface ApiCollectionResponse<T> {
8
+ value: T[];
9
+ [key: string]: any;
10
+ }
11
+ export declare class PowerPlatformService {
12
+ private config;
13
+ private msalClient;
14
+ private accessToken;
15
+ private tokenExpirationTime;
16
+ constructor(config: PowerPlatformConfig);
17
+ /**
18
+ * Get an access token for the PowerPlatform API
19
+ */
20
+ private getAccessToken;
21
+ /**
22
+ * Make an authenticated request to the PowerPlatform API
23
+ * Extended to support all HTTP methods for write operations
24
+ */
25
+ private makeRequest;
26
+ /**
27
+ * Get metadata about an entity
28
+ * @param entityName The logical name of the entity
29
+ */
30
+ getEntityMetadata(entityName: string): Promise<any>;
31
+ /**
32
+ * Get metadata about entity attributes/fields
33
+ * @param entityName The logical name of the entity
34
+ */
35
+ getEntityAttributes(entityName: string): Promise<ApiCollectionResponse<any>>;
36
+ /**
37
+ * Get metadata about a specific entity attribute/field
38
+ * @param entityName The logical name of the entity
39
+ * @param attributeName The logical name of the attribute
40
+ */
41
+ getEntityAttribute(entityName: string, attributeName: string): Promise<any>;
42
+ /**
43
+ * Get one-to-many relationships for an entity
44
+ * @param entityName The logical name of the entity
45
+ */
46
+ getEntityOneToManyRelationships(entityName: string): Promise<ApiCollectionResponse<any>>;
47
+ /**
48
+ * Get many-to-many relationships for an entity
49
+ * @param entityName The logical name of the entity
50
+ */
51
+ getEntityManyToManyRelationships(entityName: string): Promise<ApiCollectionResponse<any>>;
52
+ /**
53
+ * Get all relationships (one-to-many and many-to-many) for an entity
54
+ * @param entityName The logical name of the entity
55
+ */
56
+ getEntityRelationships(entityName: string): Promise<{
57
+ oneToMany: ApiCollectionResponse<any>;
58
+ manyToMany: ApiCollectionResponse<any>;
59
+ }>;
60
+ /**
61
+ * Get a global option set definition by name
62
+ * @param optionSetName The name of the global option set
63
+ * @returns The global option set definition
64
+ */
65
+ getGlobalOptionSet(optionSetName: string): Promise<any>;
66
+ /**
67
+ * Get a specific record by entity name (plural) and ID
68
+ * @param entityNamePlural The plural name of the entity (e.g., 'accounts', 'contacts')
69
+ * @param recordId The GUID of the record
70
+ * @returns The record data
71
+ */
72
+ getRecord(entityNamePlural: string, recordId: string): Promise<any>;
73
+ /**
74
+ * Query records using entity name (plural) and a filter expression
75
+ * @param entityNamePlural The plural name of the entity (e.g., 'accounts', 'contacts')
76
+ * @param filter OData filter expression (e.g., "name eq 'test'")
77
+ * @param maxRecords Maximum number of records to retrieve (default: 50)
78
+ * @returns Filtered list of records
79
+ */
80
+ queryRecords(entityNamePlural: string, filter: string, maxRecords?: number): Promise<ApiCollectionResponse<any>>;
81
+ /**
82
+ * Create a new record in Dataverse
83
+ * @param entityNamePlural The plural name of the entity (e.g., 'accounts', 'contacts')
84
+ * @param data Record data as JSON object (field names must match logical names)
85
+ * @returns Created record with ID and OData context
86
+ */
87
+ createRecord(entityNamePlural: string, data: Record<string, any>): Promise<any>;
88
+ /**
89
+ * Update an existing record in Dataverse
90
+ * @param entityNamePlural The plural name of the entity (e.g., 'accounts', 'contacts')
91
+ * @param recordId The GUID of the record to update
92
+ * @param data Partial record data to update (only fields being changed)
93
+ * @returns Updated record (if Prefer header used) or void
94
+ */
95
+ updateRecord(entityNamePlural: string, recordId: string, data: Record<string, any>): Promise<any>;
96
+ /**
97
+ * Delete a record from Dataverse
98
+ * @param entityNamePlural The plural name of the entity (e.g., 'accounts', 'contacts')
99
+ * @param recordId The GUID of the record to delete
100
+ * @returns Void (successful deletion returns 204 No Content)
101
+ */
102
+ deleteRecord(entityNamePlural: string, recordId: string): Promise<void>;
103
+ /**
104
+ * Get all plugin assemblies in the environment
105
+ * @param includeManaged Include managed assemblies (default: false)
106
+ * @param maxRecords Maximum number of assemblies to return (default: 100)
107
+ * @returns List of plugin assemblies with basic information
108
+ */
109
+ getPluginAssemblies(includeManaged?: boolean, maxRecords?: number): Promise<any>;
110
+ /**
111
+ * Get a plugin assembly by name with all related plugin types, steps, and images
112
+ * @param assemblyName The name of the plugin assembly
113
+ * @param includeDisabled Include disabled steps (default: false)
114
+ * @returns Complete plugin assembly information with validation
115
+ */
116
+ getPluginAssemblyComplete(assemblyName: string, includeDisabled?: boolean): Promise<any>;
117
+ /**
118
+ * Get all plugins that execute on a specific entity, organized by message and execution order
119
+ * @param entityName The logical name of the entity
120
+ * @param messageFilter Optional filter by message name (e.g., "Create", "Update")
121
+ * @param includeDisabled Include disabled steps (default: false)
122
+ * @returns Complete plugin pipeline for the entity
123
+ */
124
+ getEntityPluginPipeline(entityName: string, messageFilter?: string, includeDisabled?: boolean): Promise<any>;
125
+ /**
126
+ * Get plugin trace logs with filtering
127
+ * @param options Filtering options for trace logs
128
+ * @returns Filtered trace logs with parsed exception details
129
+ */
130
+ getPluginTraceLogs(options: {
131
+ entityName?: string;
132
+ messageName?: string;
133
+ correlationId?: string;
134
+ pluginStepId?: string;
135
+ exceptionOnly?: boolean;
136
+ hoursBack?: number;
137
+ maxRecords?: number;
138
+ }): Promise<any>;
139
+ private getOperationTypeName;
140
+ private extractExceptionType;
141
+ private extractExceptionMessage;
142
+ /**
143
+ * Get all Power Automate flows (cloud flows) in the environment
144
+ * @param activeOnly Only return activated flows (default: false)
145
+ * @param maxRecords Maximum number of flows to return (default: 100)
146
+ * @returns List of Power Automate flows with basic information
147
+ */
148
+ getFlows(activeOnly?: boolean, maxRecords?: number): Promise<any>;
149
+ /**
150
+ * Get a specific Power Automate flow with its complete definition
151
+ * @param flowId The GUID of the flow (workflowid)
152
+ * @returns Complete flow information including the flow definition JSON
153
+ */
154
+ getFlowDefinition(flowId: string): Promise<any>;
155
+ /**
156
+ * Get flow run history for a specific Power Automate flow
157
+ * @param flowId The GUID of the flow (workflowid)
158
+ * @param maxRecords Maximum number of runs to return (default: 100)
159
+ * @returns List of flow runs with status, start time, duration, and error details
160
+ */
161
+ getFlowRuns(flowId: string, maxRecords?: number): Promise<any>;
162
+ /**
163
+ * Get all classic Dynamics workflows in the environment
164
+ * @param activeOnly Only return activated workflows (default: false)
165
+ * @param maxRecords Maximum number of workflows to return (default: 100)
166
+ * @returns List of classic workflows with basic information
167
+ */
168
+ getWorkflows(activeOnly?: boolean, maxRecords?: number): Promise<any>;
169
+ /**
170
+ * Get a specific classic workflow with its complete XAML definition
171
+ * @param workflowId The GUID of the workflow (workflowid)
172
+ * @returns Complete workflow information including the XAML definition
173
+ */
174
+ getWorkflowDefinition(workflowId: string): Promise<any>;
175
+ /**
176
+ * Get all business rules in the environment
177
+ * @param activeOnly Only return activated business rules (default: false)
178
+ * @param maxRecords Maximum number of business rules to return (default: 100)
179
+ * @returns List of business rules with basic information
180
+ */
181
+ getBusinessRules(activeOnly?: boolean, maxRecords?: number): Promise<any>;
182
+ /**
183
+ * Get a specific business rule with its complete XAML definition
184
+ * @param workflowId The GUID of the business rule (workflowid)
185
+ * @returns Complete business rule information including the XAML definition
186
+ */
187
+ getBusinessRule(workflowId: string): Promise<any>;
188
+ /**
189
+ * Get all model-driven apps in the environment
190
+ * @param activeOnly Only return active apps (default: false)
191
+ * @param maxRecords Maximum number of apps to return (default: 100)
192
+ * @returns List of model-driven apps with basic information
193
+ */
194
+ getApps(activeOnly?: boolean, maxRecords?: number, includeUnpublished?: boolean, solutionUniqueName?: string): Promise<any>;
195
+ /**
196
+ * Get a specific model-driven app by ID
197
+ * @param appId The GUID of the app (appmoduleid)
198
+ * @returns Complete app information including publisher details
199
+ */
200
+ getApp(appId: string): Promise<any>;
201
+ /**
202
+ * Get all components (entities, forms, views, sitemaps) associated with an app
203
+ * @param appId The GUID of the app (appmoduleid)
204
+ * @returns List of app components with type information
205
+ */
206
+ getAppComponents(appId: string): Promise<any>;
207
+ /**
208
+ * Get the sitemap for a specific app
209
+ * @param appId The GUID of the app (appmoduleid)
210
+ * @returns Sitemap information including XML
211
+ */
212
+ getAppSitemap(appId: string): Promise<any>;
213
+ /**
214
+ * Create a new model-driven app
215
+ * @param appDefinition The app definition object
216
+ * @param solutionUniqueName Optional solution to add the app to
217
+ * @returns The created app information including ID
218
+ */
219
+ createApp(appDefinition: any, solutionUniqueName?: string): Promise<any>;
220
+ /**
221
+ * Create a sitemap from simplified configuration (no XML knowledge required)
222
+ * @param config Simplified sitemap configuration
223
+ * @param solutionUniqueName Optional solution to add the sitemap to
224
+ * @returns The created sitemap information including ID and XML
225
+ */
226
+ createSimpleSitemap(config: any, solutionUniqueName?: string): Promise<any>;
227
+ /**
228
+ * Add entities to an app by modifying the sitemap XML
229
+ * @param appId The GUID of the app
230
+ * @param entityNames Array of entity logical names to add
231
+ * @returns Result of the operation
232
+ */
233
+ addEntitiesToApp(appId: string, entityNames: string[]): Promise<any>;
234
+ /**
235
+ * Validate an app before publishing
236
+ * @param appId The GUID of the app
237
+ * @returns Validation result with any issues found
238
+ */
239
+ validateApp(appId: string): Promise<any>;
240
+ /**
241
+ * Publish an app to make it available to users
242
+ * @param appId The GUID of the app
243
+ * @returns Result of the publish operation
244
+ */
245
+ publishApp(appId: string): Promise<any>;
246
+ /**
247
+ * Helper to escape XML special characters
248
+ */
249
+ private escapeXml;
250
+ /**
251
+ * Create a new custom entity (table)
252
+ * @param entityDefinition The entity definition object
253
+ * @param solutionUniqueName Optional solution to add the entity to
254
+ * @returns The created entity metadata
255
+ */
256
+ createEntity(entityDefinition: any, solutionUniqueName?: string): Promise<any>;
257
+ /**
258
+ * Update an existing entity
259
+ * @param metadataId The MetadataId of the entity
260
+ * @param updates The properties to update
261
+ * @param solutionUniqueName Optional solution context
262
+ */
263
+ updateEntity(metadataId: string, updates: any, solutionUniqueName?: string): Promise<void>;
264
+ /**
265
+ * Delete a custom entity
266
+ * @param metadataId The MetadataId of the entity to delete
267
+ */
268
+ deleteEntity(metadataId: string): Promise<void>;
269
+ /**
270
+ * Update entity icon using Fluent UI System Icon
271
+ * @param entityLogicalName The logical name of the entity
272
+ * @param iconFileName The Fluent UI icon file name (e.g., 'people_community_24_filled.svg')
273
+ * @param solutionUniqueName Optional solution to add the web resource to
274
+ * @returns Result with web resource ID and icon vector name
275
+ */
276
+ updateEntityIcon(entityLogicalName: string, iconFileName: string, solutionUniqueName?: string): Promise<any>;
277
+ /**
278
+ * Create a new attribute on an entity
279
+ * @param entityLogicalName The logical name of the entity
280
+ * @param attributeDefinition The attribute definition object
281
+ * @param solutionUniqueName Optional solution to add the attribute to
282
+ * @returns The created attribute metadata
283
+ */
284
+ createAttribute(entityLogicalName: string, attributeDefinition: any, solutionUniqueName?: string): Promise<any>;
285
+ /**
286
+ * Update an existing attribute
287
+ * @param entityLogicalName The logical name of the entity
288
+ * @param attributeLogicalName The logical name of the attribute
289
+ * @param updates The properties to update
290
+ * @param solutionUniqueName Optional solution context
291
+ */
292
+ updateAttribute(entityLogicalName: string, attributeLogicalName: string, updates: any, solutionUniqueName?: string): Promise<void>;
293
+ /**
294
+ * Delete an attribute
295
+ * @param entityLogicalName The logical name of the entity
296
+ * @param attributeMetadataId The MetadataId of the attribute to delete
297
+ */
298
+ deleteAttribute(entityLogicalName: string, attributeMetadataId: string): Promise<void>;
299
+ /**
300
+ * Create a picklist attribute using a global option set
301
+ * @param entityLogicalName The logical name of the entity
302
+ * @param attributeDefinition The attribute definition (must reference a global option set)
303
+ * @param solutionUniqueName Optional solution to add the attribute to
304
+ * @returns The created attribute metadata
305
+ */
306
+ createGlobalOptionSetAttribute(entityLogicalName: string, attributeDefinition: any, solutionUniqueName?: string): Promise<any>;
307
+ /**
308
+ * Create a one-to-many relationship
309
+ * @param relationshipDefinition The relationship definition
310
+ * @param solutionUniqueName Optional solution to add the relationship to
311
+ */
312
+ createOneToManyRelationship(relationshipDefinition: any, solutionUniqueName?: string): Promise<any>;
313
+ /**
314
+ * Create a many-to-many relationship
315
+ * @param relationshipDefinition The relationship definition
316
+ * @param solutionUniqueName Optional solution to add the relationship to
317
+ */
318
+ createManyToManyRelationship(relationshipDefinition: any, solutionUniqueName?: string): Promise<any>;
319
+ /**
320
+ * Delete a relationship
321
+ * @param metadataId The MetadataId of the relationship to delete
322
+ */
323
+ deleteRelationship(metadataId: string): Promise<void>;
324
+ /**
325
+ * Update a relationship
326
+ * Note: Most relationship properties are immutable, only labels can be updated
327
+ * @param metadataId The MetadataId of the relationship
328
+ * @param updates The properties to update (typically labels)
329
+ */
330
+ updateRelationship(metadataId: string, updates: any): Promise<void>;
331
+ /**
332
+ * Get detailed information about a relationship
333
+ * @param metadataId The MetadataId of the relationship
334
+ * @returns The relationship metadata
335
+ */
336
+ getRelationshipDetails(metadataId: string): Promise<any>;
337
+ /**
338
+ * Publish all customizations
339
+ */
340
+ publishAllCustomizations(): Promise<void>;
341
+ /**
342
+ * Publish specific customizations
343
+ * @param parameterXml The ParameterXml specifying what to publish
344
+ */
345
+ publishXml(parameterXml: string): Promise<void>;
346
+ /**
347
+ * Create a global option set
348
+ * @param optionSetDefinition The option set definition
349
+ * @param solutionUniqueName Optional solution to add the option set to
350
+ */
351
+ createGlobalOptionSet(optionSetDefinition: any, solutionUniqueName?: string): Promise<any>;
352
+ /**
353
+ * Delete a global option set
354
+ * @param metadataId The MetadataId of the option set to delete
355
+ */
356
+ deleteGlobalOptionSet(metadataId: string): Promise<void>;
357
+ /**
358
+ * Update a global option set
359
+ */
360
+ updateGlobalOptionSet(metadataId: string, updates: any, solutionUniqueName?: string): Promise<void>;
361
+ /**
362
+ * Add a value to a global option set
363
+ */
364
+ addOptionSetValue(optionSetName: string, value: number, label: string, solutionUniqueName?: string): Promise<any>;
365
+ /**
366
+ * Update an option set value
367
+ */
368
+ updateOptionSetValue(optionSetName: string, value: number, label: string, solutionUniqueName?: string): Promise<void>;
369
+ /**
370
+ * Delete an option set value
371
+ */
372
+ deleteOptionSetValue(optionSetName: string, value: number): Promise<void>;
373
+ /**
374
+ * Reorder option set values
375
+ */
376
+ reorderOptionSetValues(optionSetName: string, values: number[], solutionUniqueName?: string): Promise<void>;
377
+ /**
378
+ * Create a form (systemform)
379
+ */
380
+ createForm(form: any, solutionUniqueName?: string): Promise<any>;
381
+ /**
382
+ * Update a form
383
+ */
384
+ updateForm(formId: string, updates: any, solutionUniqueName?: string): Promise<void>;
385
+ /**
386
+ * Delete a form
387
+ */
388
+ deleteForm(formId: string): Promise<void>;
389
+ /**
390
+ * Get forms for an entity
391
+ */
392
+ getForms(entityLogicalName: string): Promise<any>;
393
+ /**
394
+ * Create a view (savedquery)
395
+ */
396
+ createView(view: any, solutionUniqueName?: string): Promise<any>;
397
+ /**
398
+ * Update a view
399
+ */
400
+ updateView(viewId: string, updates: any, solutionUniqueName?: string): Promise<void>;
401
+ /**
402
+ * Delete a view
403
+ */
404
+ deleteView(viewId: string): Promise<void>;
405
+ /**
406
+ * Get views for an entity
407
+ */
408
+ getViews(entityLogicalName: string): Promise<any>;
409
+ /**
410
+ * Activate a form (set statecode=1)
411
+ * @param formId The systemformid (GUID)
412
+ */
413
+ activateForm(formId: string): Promise<void>;
414
+ /**
415
+ * Deactivate a form (set statecode=0)
416
+ * @param formId The systemformid (GUID)
417
+ */
418
+ deactivateForm(formId: string): Promise<void>;
419
+ /**
420
+ * Set a view as the default view for its entity
421
+ * @param viewId The savedqueryid (GUID)
422
+ */
423
+ setDefaultView(viewId: string): Promise<void>;
424
+ /**
425
+ * Get the FetchXML from a view
426
+ * @param viewId The savedqueryid (GUID)
427
+ * @returns The view with FetchXML
428
+ */
429
+ getViewFetchXml(viewId: string): Promise<any>;
430
+ /**
431
+ * Create a web resource
432
+ */
433
+ createWebResource(webResource: any, solutionUniqueName?: string): Promise<any>;
434
+ /**
435
+ * Update a web resource
436
+ */
437
+ updateWebResource(webResourceId: string, updates: any, solutionUniqueName?: string): Promise<void>;
438
+ /**
439
+ * Delete a web resource
440
+ */
441
+ deleteWebResource(webResourceId: string): Promise<void>;
442
+ /**
443
+ * Get web resource
444
+ */
445
+ getWebResource(webResourceId: string): Promise<any>;
446
+ /**
447
+ * Get web resources by name pattern
448
+ */
449
+ getWebResources(nameFilter?: string): Promise<any>;
450
+ /**
451
+ * Get web resource content (base64 encoded)
452
+ * @param webResourceId The webresourceid (GUID)
453
+ * @returns The web resource with content field
454
+ */
455
+ getWebResourceContent(webResourceId: string): Promise<any>;
456
+ /**
457
+ * Get web resource dependencies
458
+ * @param webResourceId The webresourceid (GUID)
459
+ * @returns List of dependencies
460
+ */
461
+ getWebResourceDependencies(webResourceId: string): Promise<any>;
462
+ /**
463
+ * Create a publisher
464
+ */
465
+ createPublisher(publisher: any): Promise<any>;
466
+ /**
467
+ * Get publishers
468
+ */
469
+ getPublishers(): Promise<any>;
470
+ /**
471
+ * Create a solution
472
+ */
473
+ createSolution(solution: any): Promise<any>;
474
+ /**
475
+ * Get solutions
476
+ */
477
+ getSolutions(): Promise<any>;
478
+ /**
479
+ * Get solution by unique name
480
+ */
481
+ getSolution(uniqueName: string): Promise<any>;
482
+ /**
483
+ * Add component to solution
484
+ */
485
+ addComponentToSolution(solutionUniqueName: string, componentId: string, componentType: number, addRequiredComponents?: boolean, includedComponentSettingsValues?: string): Promise<void>;
486
+ /**
487
+ * Remove component from solution
488
+ */
489
+ removeComponentFromSolution(solutionUniqueName: string, componentId: string, componentType: number): Promise<void>;
490
+ /**
491
+ * Get solution components
492
+ */
493
+ getSolutionComponents(solutionUniqueName: string): Promise<any>;
494
+ /**
495
+ * Export solution
496
+ */
497
+ exportSolution(solutionName: string, managed?: boolean): Promise<any>;
498
+ /**
499
+ * Import solution
500
+ */
501
+ importSolution(customizationFile: string, publishWorkflows?: boolean, overwriteUnmanagedCustomizations?: boolean): Promise<any>;
502
+ /**
503
+ * Delete a solution
504
+ */
505
+ deleteSolution(solutionId: string): Promise<void>;
506
+ /**
507
+ * Publish specific entity
508
+ */
509
+ publishEntity(entityLogicalName: string): Promise<void>;
510
+ /**
511
+ * Publish specific component
512
+ */
513
+ publishComponent(componentId: string, componentType: number): Promise<void>;
514
+ /**
515
+ * Check for unpublished customizations
516
+ */
517
+ checkUnpublishedChanges(): Promise<any>;
518
+ /**
519
+ * Check component dependencies
520
+ */
521
+ checkDependencies(componentId: string, componentType: number): Promise<any>;
522
+ /**
523
+ * Check if component can be deleted
524
+ */
525
+ checkDeleteEligibility(componentId: string, componentType: number): Promise<{
526
+ canDelete: boolean;
527
+ dependencies: any[];
528
+ }>;
529
+ /**
530
+ * Preview unpublished changes
531
+ * Returns all components that have unpublished customizations
532
+ */
533
+ previewUnpublishedChanges(): Promise<any>;
534
+ /**
535
+ * Check dependencies for a specific component
536
+ * @param componentId The component ID (GUID)
537
+ * @param componentType The component type code
538
+ * @returns Dependency information
539
+ */
540
+ checkComponentDependencies(componentId: string, componentType: number): Promise<any>;
541
+ /**
542
+ * Validate solution integrity
543
+ * Checks for missing dependencies and other issues
544
+ * @param solutionUniqueName The unique name of the solution
545
+ * @returns Validation results
546
+ */
547
+ validateSolutionIntegrity(solutionUniqueName: string): Promise<any>;
548
+ /**
549
+ * Validate schema name
550
+ */
551
+ validateSchemaName(schemaName: string, prefix: string): {
552
+ valid: boolean;
553
+ errors: string[];
554
+ };
555
+ /**
556
+ * Get entity customization information
557
+ */
558
+ getEntityCustomizationInfo(entityLogicalName: string): Promise<any>;
559
+ /**
560
+ * Check if entity has dependencies
561
+ */
562
+ checkEntityDependencies(entityLogicalName: string): Promise<any>;
563
+ /**
564
+ * Helper to generate GUID
565
+ */
566
+ private generateGuid;
567
+ /**
568
+ * Extract assembly version from .NET DLL using PE header parsing
569
+ * @param assemblyPath - Path to the compiled .NET assembly (DLL)
570
+ * @returns Version string (e.g., "1.0.0.0")
571
+ */
572
+ extractAssemblyVersion(assemblyPath: string): Promise<string>;
573
+ /**
574
+ * Query plugin type by typename
575
+ * @param typename - Plugin type typename (e.g., "MyNamespace.ContactPlugin")
576
+ * @returns Plugin type ID
577
+ */
578
+ queryPluginTypeByTypename(typename: string): Promise<string>;
579
+ /**
580
+ * Query plugin assembly by name
581
+ * @param assemblyName - Assembly name
582
+ * @returns Plugin assembly ID or null if not found
583
+ */
584
+ queryPluginAssemblyByName(assemblyName: string): Promise<string | null>;
585
+ /**
586
+ * Resolve SDK Message and Filter IDs for plugin step registration
587
+ * @param messageName - SDK message name (e.g., "Create", "Update", "Delete")
588
+ * @param entityName - Entity logical name (e.g., "contact", "account")
589
+ * @returns Object containing messageId and filterId
590
+ */
591
+ resolveSdkMessageAndFilter(messageName: string, entityName: string): Promise<{
592
+ messageId: string;
593
+ filterId: string;
594
+ }>;
595
+ /**
596
+ * Create a new plugin assembly in Dataverse
597
+ * @param options - Assembly creation options
598
+ * @returns Created assembly ID and plugin types
599
+ */
600
+ createPluginAssembly(options: {
601
+ name: string;
602
+ content: string;
603
+ version: string;
604
+ isolationMode?: number;
605
+ sourceType?: number;
606
+ description?: string;
607
+ solutionUniqueName?: string;
608
+ }): Promise<{
609
+ pluginAssemblyId: string;
610
+ pluginTypes: Array<{
611
+ pluginTypeId: string;
612
+ typeName: string;
613
+ friendlyName: string;
614
+ }>;
615
+ }>;
616
+ /**
617
+ * Update an existing plugin assembly with new DLL content
618
+ * @param assemblyId - Assembly GUID
619
+ * @param content - Base64-encoded DLL content
620
+ * @param version - New version string
621
+ * @param solutionUniqueName - Optional solution context
622
+ */
623
+ updatePluginAssembly(assemblyId: string, content: string, version: string, solutionUniqueName?: string): Promise<void>;
624
+ /**
625
+ * Register a plugin step on an SDK message
626
+ * @param options - Step registration options
627
+ * @returns Created step ID
628
+ */
629
+ registerPluginStep(options: {
630
+ pluginTypeId: string;
631
+ name: string;
632
+ messageName: string;
633
+ primaryEntityName: string;
634
+ stage: number;
635
+ executionMode: number;
636
+ rank?: number;
637
+ filteringAttributes?: string;
638
+ configuration?: string;
639
+ supportedDeployment?: number;
640
+ solutionUniqueName?: string;
641
+ }): Promise<{
642
+ stepId: string;
643
+ }>;
644
+ /**
645
+ * Register a pre/post image for a plugin step
646
+ * @param options - Image registration options
647
+ * @returns Created image ID
648
+ */
649
+ registerPluginImage(options: {
650
+ stepId: string;
651
+ name: string;
652
+ imageType: number;
653
+ entityAlias: string;
654
+ attributes?: string;
655
+ messagePropertyName?: string;
656
+ }): Promise<{
657
+ imageId: string;
658
+ }>;
659
+ }
660
+ //# sourceMappingURL=PowerPlatformService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PowerPlatformService.d.ts","sourceRoot":"","sources":["../src/PowerPlatformService.ts"],"names":[],"mappings":"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"}