File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,26 @@ declare class Afip {
29
29
* @param {string } service Web Service name
30
30
* @param {any } options Web Service options
31
31
*
32
- * @return AfipWebService Token Authorization for AFIP Web Service
32
+ * @return AfipWebService New AFIP Web Service
33
33
**/
34
34
WebService ( service : string , options ?: any ) : AfipWebService ;
35
+ /**
36
+ * Create AFIP cert
37
+ *
38
+ * @param {string } username Username used in AFIP page
39
+ * @param {string } password Password used in AFIP page
40
+ * @param {string } alias Alias for the cert
41
+ **/
42
+ CreateCert ( username : string , password : string , alias : string ) : Promise < any > ;
43
+ /**
44
+ * Create authorization to use a web service
45
+ *
46
+ * @param {string } username Username used in AFIP page
47
+ * @param {string } password Password used in AFIP page
48
+ * @param {string } alias Cert alias
49
+ * @param {string } wsid Web service id
50
+ **/
51
+ CreateWSAuth ( username : string , password : string , alias : string , wsid : string ) : Promise < any > ;
35
52
}
36
53
import ElectronicBilling = require( "./Class/ElectronicBilling" ) ;
37
54
import RegisterScopeFour = require( "./Class/RegisterScopeFour" ) ;
You can’t perform that action at this time.
0 commit comments