-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgicap.psd1
More file actions
62 lines (58 loc) · 1.54 KB
/
Copy pathAgicap.psd1
File metadata and controls
62 lines (58 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@{
DefaultCommandPrefix = "Agicap"
ModuleVersion = "0.8.3"
PowerShellVersion = "7.6"
RootModule = "Sources/Main.psm1"
Author = "MC2IT <dev@mc2it.com>"
CompanyName = "MC2IT"
Copyright = "© MC2IT"
Description = "An Agicap API client library for PowerShell."
GUID = "e6365c39-25a6-41c3-9300-e9b1e7d525c9"
AliasesToExport = @()
CmdletsToExport = @()
RequiredAssemblies = , "Binaries/Mc2it.Agicap.dll"
VariablesToExport = @()
FunctionsToExport = @(
"Approve-BankJournalEntry"
"Deny-AccountingPurchase"
"Deny-BankJournalEntry"
"Get-BankJournalExport"
"Get-BeneficiarySynchronization"
"New-AccountingAccount"
"New-BankAccount"
"New-BankJournalExportCounts"
"New-Beneficiary"
"New-Client"
"New-Contact"
"New-LegalAddress"
"New-NotImportedEntry"
"New-NotImportedEntryError"
"New-PostalAddress"
"New-Supplier"
"New-SynchronizedBeneficiary"
"New-ThirdParty"
"Remove-AccountingAccount"
"Remove-Beneficiary"
"Remove-ThirdParty"
"Request-AccessToken"
"Select-AccountingPurchase"
"Select-BankJournalExport"
"Select-Beneficiary"
"Select-Entity"
"Select-Organization"
"Submit-AccountingAccount"
"Submit-BankJournalExport"
"Submit-Beneficiary"
"Submit-ThirdParty"
"Sync-Beneficiary"
"Update-Beneficiary"
)
PrivateData = @{
PSData = @{
LicenseUri = "https://github.com/MC2IT/Agicap.ps1/blob/main/License.md"
ProjectUri = "https://github.com/MC2IT/Agicap.ps1"
ReleaseNotes = "https://github.com/MC2IT/Agicap.ps1/releases"
Tags = "accounting", "agicap", "api", "client", "sdk", "treasury"
}
}
}