@cparra/apex-reflection 2.22.0-dev.20251224084836 → 2.22.0-dev.20251224085115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare function reflect(declarationBody: string):
|
|
2
|
-
export declare function reflectTrigger(declarationBody: string):
|
|
1
|
+
export declare function reflect(declarationBody: string): ReflectionResult;
|
|
2
|
+
export declare function reflectTrigger(declarationBody: string): TriggerReflectionResult;
|
|
3
3
|
export interface ParamAnnotation {
|
|
4
4
|
bodyLines: string[];
|
|
5
5
|
paramName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cparra/apex-reflection",
|
|
3
|
-
"version": "2.22.0-dev.
|
|
3
|
+
"version": "2.22.0-dev.20251224085115",
|
|
4
4
|
"description": "Provides tools for reflecting Apex code, the language used in Salesforce development.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|