@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 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,6 +1,3 @@
1
- ---
2
- layout: default
3
- ---
4
1
  # SampleInterface
5
2
 
6
3
  This is an interface description.
@@ -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
+
@@ -74,7 +74,7 @@ public with sharing class SampleClass {
74
74
 
75
75
  /**
76
76
  * @description Something here
77
- * @arg1
77
+ * @arg1 The arg1 description
78
78
  */
79
79
  public static String anotherSampleMethod(String arg1) {
80
80
  System.debug('something');
@@ -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.4",
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.0",
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",
package/docs/index.md DELETED
@@ -1,9 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
- # Classes
5
- ## Sample Interfaces
6
-
7
- ### [SampleInterface](/Sample-Interfaces/SampleInterface.md)
8
-
9
- This is an interface description.