@cparra/apex-reflection 1.1.0 → 1.1.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 (3) hide show
  1. package/index.d.ts +4 -1
  2. package/index.ts +3 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -56,6 +56,7 @@ export interface PropertyMirror {
56
56
  memberModifiers: string[];
57
57
  type: string;
58
58
  docComment?: DocComment;
59
+ group?: string;
59
60
  }
60
61
  export interface FieldMirror {
61
62
  access_modifier: string;
@@ -88,6 +89,7 @@ export interface EnumMirror {
88
89
  type_name: TypeName;
89
90
  access_modifier: string;
90
91
  docComment?: DocComment;
92
+ group?: string;
91
93
  }
92
94
  export interface InterfaceMirror {
93
95
  annotations: Annotation[];
@@ -98,9 +100,9 @@ export interface InterfaceMirror {
98
100
  access_modifier: string;
99
101
  docComment?: DocComment;
100
102
  sharingModifier?: string;
103
+ group?: string;
101
104
  }
102
105
  export interface ClassMirror {
103
- string: any;
104
106
  annotations: Annotation[];
105
107
  name: string;
106
108
  type_name: TypeName;
@@ -117,5 +119,6 @@ export interface ClassMirror {
117
119
  classes: ClassMirror[];
118
120
  access_modifier: string;
119
121
  docComment?: DocComment;
122
+ group?: string;
120
123
  }
121
124
  export {};
package/index.ts CHANGED
@@ -60,6 +60,7 @@ export interface MethodMirror {
60
60
  type: string;
61
61
  parameters: ParameterMirror[];
62
62
  docComment?: DocComment;
63
+ group?: string;
63
64
  }
64
65
 
65
66
  export interface PropertyMirror {
@@ -79,6 +80,7 @@ export interface FieldMirror {
79
80
  memberModifiers: string[];
80
81
  type: string;
81
82
  docComment?: DocComment;
83
+ group?: string;
82
84
  }
83
85
 
84
86
  export interface ConstructorMirror {
@@ -86,6 +88,7 @@ export interface ConstructorMirror {
86
88
  annotations: Annotation[];
87
89
  parameters: ParameterMirror[];
88
90
  docComment?: DocComment;
91
+ group?: string;
89
92
  }
90
93
 
91
94
  export interface ReflectionResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cparra/apex-reflection",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {