@cparra/apexdocs 2.2.4 → 2.2.5
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/docs/README.md +5 -0
- package/docs/Sample-Classes/SampleClass.md +6 -0
- package/docs/Sample-Interfaces/SampleInterface.md +0 -3
- package/docs/Utils/GroupedClass.md +10 -10
- package/examples/force-app/main/default/classes/SampleClass.cls +1 -1
- package/examples/force-app/main/default/classes/SampleClassTest.cls +11 -0
- package/package.json +2 -2
- package/docs/index.md +0 -9
package/docs/README.md
CHANGED
|
@@ -19,3 +19,8 @@ This is a class description. This class relates to [SampleInterface](/Sample-Int
|
|
|
19
19
|
### [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
20
20
|
|
|
21
21
|
This is an interface description.
|
|
22
|
+
## Stripe Integration
|
|
23
|
+
|
|
24
|
+
### [SampleTestClass](/Stripe-Integration/SampleTestClass.md)
|
|
25
|
+
|
|
26
|
+
|
|
@@ -114,10 +114,16 @@ System.debug(result);
|
|
|
114
114
|
```
|
|
115
115
|
|
|
116
116
|
### `static anotherSampleMethod(String arg1)`
|
|
117
|
+
|
|
118
|
+
Something here
|
|
119
|
+
|
|
117
120
|
#### Parameters
|
|
118
121
|
|Param|Description|
|
|
119
122
|
|---|---|
|
|
120
123
|
|
|
124
|
+
|
|
125
|
+
**Arg1** The arg1 description
|
|
126
|
+
|
|
121
127
|
### `static call()`
|
|
122
128
|
|
|
123
129
|
Calls the method. This methods allows you to call it.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# GroupedClass
|
|
2
|
-
|
|
3
|
-
Uses a block style apex doc
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
**Group** Utils
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
**Test Class** [SampleClass](/Sample-Classes/SampleClass.md)
|
|
10
|
-
|
|
1
|
+
# GroupedClass
|
|
2
|
+
|
|
3
|
+
Uses a block style apex doc
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
**Group** Utils
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
**Test Class** [SampleClass](/Sample-Classes/SampleClass.md)
|
|
10
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@IsTest
|
|
2
|
+
/**
|
|
3
|
+
* @Name StripeRESTService
|
|
4
|
+
* @Date 3/2/2022
|
|
5
|
+
* @group Stripe Integration
|
|
6
|
+
* @See StripeRESTServiceTest
|
|
7
|
+
* @Description Apex class that creates and exposes a REST endpoint by the name of 'Stripe'. [ORG_URL]/services/apexrest/Stripe (case sensitive!)
|
|
8
|
+
*/
|
|
9
|
+
private class SampleTestClass {
|
|
10
|
+
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cparra/apexdocs",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "Library with CLI capabilities to generate documentation for Salesforce Apex classes.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"apex",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@cparra/apex-reflection": "^1.5.
|
|
67
|
+
"@cparra/apex-reflection": "^1.5.1",
|
|
68
68
|
"fast-xml-parser": "^4.0.1",
|
|
69
69
|
"chalk": "^4.1.2",
|
|
70
70
|
"html-entities": "^2.3.2",
|