visualvault-api 2.0.0-beta.0 → 2.0.0-beta.3
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/LICENSE +12 -18
- package/README.md +148 -148
- package/dist/VVRestApi.cjs +378 -88
- package/dist/VVRestApi.cjs.map +1 -1
- package/dist/VVRestApi.d.cts +26 -11
- package/dist/VVRestApi.d.ts +26 -11
- package/dist/VVRestApi.js +378 -88
- package/dist/VVRestApi.js.map +1 -1
- package/dist/config.yml +36 -4
- package/dist/index.cjs +378 -88
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +378 -88
- package/dist/index.js.map +1 -1
- package/package.json +74 -74
package/dist/config.yml
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# VisualVault URIs
|
|
2
2
|
ApiUri: /api/v1/{custalias}/{custdbalias}
|
|
3
|
+
BaseApiUri: /api/v1
|
|
3
4
|
FormsApiUri: /api/v1
|
|
4
5
|
DocApiUri: /api/v1
|
|
5
6
|
NotificationsApiUri: /api/v1
|
|
@@ -21,6 +22,8 @@ ResourceUri:
|
|
|
21
22
|
DocumentsIdOcr: /documents/{id}/ocr
|
|
22
23
|
DocumentsIdRelateDocument: /documents/{id}/relateDocument
|
|
23
24
|
DocumentsIdExpiration: /documents/{id}/expiration
|
|
25
|
+
DocumentsWebDavUrl: /documents/{id}/webdavurl
|
|
26
|
+
DocumentsWopiUrl: /documents/{id}/wopiurl
|
|
24
27
|
Files: /files
|
|
25
28
|
FilesQuery: /files?q=
|
|
26
29
|
FilesId: /files/{id}
|
|
@@ -53,9 +56,34 @@ ResourceUri:
|
|
|
53
56
|
UsersIdUserId: /users/{id}/userId
|
|
54
57
|
UsersMe: /users/me
|
|
55
58
|
GetGroups: /groups
|
|
59
|
+
GroupById: /groups/{id}
|
|
60
|
+
AddGroup: /groups
|
|
61
|
+
UpdateGroup: /groups/{id}
|
|
62
|
+
DeleteGroup: /groups/{id}
|
|
56
63
|
Groups: /sites/{id}/groups
|
|
64
|
+
SiteGroupById: /sites/{siteId}/groups/{groupId}
|
|
57
65
|
GroupsUsers: /groups/{id}/users
|
|
58
66
|
GroupsAddUser: /groups/{groupId}/users/{userId}
|
|
67
|
+
SiteById: /sites/{id}
|
|
68
|
+
ChangeGroupSite: /sites/changegroupsite
|
|
69
|
+
LanguageAreas: /resource/area
|
|
70
|
+
Languages: /resource/language
|
|
71
|
+
ExportLanguages: /resource/customerLocalization/exportCsv
|
|
72
|
+
ImportLanguages: /resource/customerLocalization/importCsv
|
|
73
|
+
Reports: /reports
|
|
74
|
+
DropDownLists: /lists
|
|
75
|
+
DropDownListsId: /lists/{id}
|
|
76
|
+
DropDownListsIdItems: /lists/{id}/items
|
|
77
|
+
DocumentTypes: /documenttypes
|
|
78
|
+
SavedSearches: /savedsearches
|
|
79
|
+
DocumentFields: /documentfields
|
|
80
|
+
SavedSearchIndexFields: /savedSearchIndexFields
|
|
81
|
+
LastDocuments: /lastdocuments
|
|
82
|
+
FrequentDocuments: /frequentdocuments
|
|
83
|
+
SavedSearchDocuments: /savedsearchdocuments/{savedSearchId}
|
|
84
|
+
DocumentDefaultAction: /documentDefaultAction/{documentId}
|
|
85
|
+
CreateDocumentZipFile: /documents/CreateDocumentZipFile
|
|
86
|
+
GetDocumentZipFileStatus: /documents/GetDocumentZipFileStatus
|
|
59
87
|
Folders: /folders
|
|
60
88
|
FoldersId: /folders/{id}
|
|
61
89
|
FoldersCopy: /folders/copy
|
|
@@ -78,14 +106,17 @@ ResourceUri:
|
|
|
78
106
|
CustomerAssignUser: /customer/{customerId}/assignuser
|
|
79
107
|
CustomerDatabaseAssignUser: /customerdatabase/{databaseId}/assignuser
|
|
80
108
|
IndexFields: /indexfields
|
|
109
|
+
IndexFieldsFolder: /indexfields/{id}/folders/{folderId}
|
|
81
110
|
OutsideProcesses: /outsideprocesses
|
|
82
111
|
SecurityMembers: /securitymembers
|
|
83
112
|
Layout: /layout
|
|
84
113
|
ReportServerPDF: /ReportServer/{id}/PDF
|
|
85
|
-
DocApi:
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
114
|
+
DocApi:
|
|
115
|
+
CreateDocument: /Documents
|
|
116
|
+
GetRevision: /Documents/revisions/{id}
|
|
117
|
+
OcrStatus: /Documents/ocr/{id}
|
|
118
|
+
UpdateDocument: /Documents/{id}
|
|
119
|
+
AdvancedSearch: /Search/Advanced
|
|
89
120
|
FormsApi:
|
|
90
121
|
FormInstance: /forminstance
|
|
91
122
|
ObjectsApi:
|
|
@@ -95,6 +126,7 @@ ResourceUri:
|
|
|
95
126
|
ObjectById: /object/{id}
|
|
96
127
|
ObjectSearchByModelId: /object/search/{modelId}
|
|
97
128
|
StudioApi:
|
|
129
|
+
ResourceUserFeatures: /resources/userFeatures
|
|
98
130
|
WorkflowLatestPublished: /workflows/latest/published
|
|
99
131
|
WorkflowLatestPublishedId: /workflows/latest/published/{id}
|
|
100
132
|
WorkflowVariables: /workflows/{id}/variables
|