@simpleapps-com/augur-api 0.4.4 → 0.4.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/README.md +11 -22
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/services/joomla/client.d.ts +62 -62
- package/dist/cjs/services/joomla/client.d.ts.map +1 -1
- package/dist/cjs/services/joomla/client.js +70 -70
- package/dist/cjs/services/joomla/client.js.map +1 -1
- package/dist/cjs/services/joomla/schemas/content.d.ts +6 -6
- package/dist/cjs/services/joomla/schemas/content.d.ts.map +1 -1
- package/dist/cjs/services/joomla/schemas/content.js +3 -1
- package/dist/cjs/services/joomla/schemas/content.js.map +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/services/joomla/client.d.ts +62 -62
- package/dist/esm/services/joomla/client.d.ts.map +1 -1
- package/dist/esm/services/joomla/client.js +70 -70
- package/dist/esm/services/joomla/client.js.map +1 -1
- package/dist/esm/services/joomla/schemas/content.d.ts +6 -6
- package/dist/esm/services/joomla/schemas/content.d.ts.map +1 -1
- package/dist/esm/services/joomla/schemas/content.js +3 -1
- package/dist/esm/services/joomla/schemas/content.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/services/joomla/client.d.ts +62 -62
- package/dist/types/services/joomla/client.d.ts.map +1 -1
- package/dist/types/services/joomla/schemas/content.d.ts +6 -6
- package/dist/types/services/joomla/schemas/content.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -27,52 +27,52 @@ export declare class JoomlaClient extends BaseServiceClient {
|
|
|
27
27
|
content: {
|
|
28
28
|
/**
|
|
29
29
|
* List content items - /content GET
|
|
30
|
-
* @fullPath api.joomla.content.
|
|
30
|
+
* @fullPath api.joomla.content.list
|
|
31
31
|
* @service joomla
|
|
32
32
|
* @domain content-management
|
|
33
|
-
* @dataMethod
|
|
33
|
+
* @dataMethod listData() - returns only the content array without metadata
|
|
34
34
|
* @discoverable true
|
|
35
35
|
* @searchTerms ["content", "articles", "list content", "cms content"]
|
|
36
36
|
* @relatedEndpoints ["api.joomla.content.get", "api.joomla.content.doc.get"]
|
|
37
37
|
* @commonPatterns ["list articles", "get content", "cms articles"]
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
list: (params?: ContentParams) => Promise<ContentResponse>;
|
|
40
40
|
/**
|
|
41
41
|
* Get content data only - /content GET (data method)
|
|
42
|
-
* @fullPath api.joomla.content.
|
|
42
|
+
* @fullPath api.joomla.content.listData
|
|
43
43
|
* @service joomla
|
|
44
44
|
* @domain content-management
|
|
45
|
-
* @dataMethod
|
|
45
|
+
* @dataMethod listData() - returns only the content array without metadata
|
|
46
46
|
* @discoverable true
|
|
47
47
|
* @searchTerms ["content data", "articles data", "get content data", "cms content data"]
|
|
48
|
-
* @relatedEndpoints ["api.joomla.content.
|
|
48
|
+
* @relatedEndpoints ["api.joomla.content.list"]
|
|
49
49
|
* @commonPatterns ["get content data only", "extract article data"]
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
listData: (params?: ContentParams) => Promise<import("zod").objectOutputType<{}, import("zod").ZodTypeAny, "passthrough">[]>;
|
|
52
52
|
/**
|
|
53
53
|
* Get content by ID - /content/{id} GET
|
|
54
|
-
* @fullPath api.joomla.content.
|
|
54
|
+
* @fullPath api.joomla.content.get
|
|
55
55
|
* @service joomla
|
|
56
56
|
* @domain content-management
|
|
57
|
-
* @dataMethod
|
|
57
|
+
* @dataMethod getData() - returns only the content object without metadata
|
|
58
58
|
* @discoverable true
|
|
59
59
|
* @searchTerms ["content by id", "single article", "get article by id"]
|
|
60
|
-
* @relatedEndpoints ["api.joomla.content.
|
|
60
|
+
* @relatedEndpoints ["api.joomla.content.list", "api.joomla.content.doc.get"]
|
|
61
61
|
* @commonPatterns ["get article details", "fetch content item"]
|
|
62
62
|
*/
|
|
63
|
-
|
|
63
|
+
get: (contentId: number | string, params?: ContentIdParams) => Promise<ContentIdResponse>;
|
|
64
64
|
/**
|
|
65
65
|
* Get content by ID data only - /content/{id} GET (data method)
|
|
66
|
-
* @fullPath api.joomla.content.
|
|
66
|
+
* @fullPath api.joomla.content.getData
|
|
67
67
|
* @service joomla
|
|
68
68
|
* @domain content-management
|
|
69
|
-
* @dataMethod
|
|
69
|
+
* @dataMethod getData() - returns only the content object without metadata
|
|
70
70
|
* @discoverable true
|
|
71
71
|
* @searchTerms ["content data by id", "article data", "single content data"]
|
|
72
|
-
* @relatedEndpoints ["api.joomla.content.
|
|
72
|
+
* @relatedEndpoints ["api.joomla.content.get"]
|
|
73
73
|
* @commonPatterns ["extract article data", "get content data only"]
|
|
74
74
|
*/
|
|
75
|
-
|
|
75
|
+
getData: (contentId: number | string, params?: ContentIdParams) => Promise<Record<string, unknown>>;
|
|
76
76
|
/**
|
|
77
77
|
* Content document endpoints - /content/{id}/doc
|
|
78
78
|
*/
|
|
@@ -169,25 +169,25 @@ export declare class JoomlaClient extends BaseServiceClient {
|
|
|
169
169
|
tags: {
|
|
170
170
|
/**
|
|
171
171
|
* List content tags
|
|
172
|
-
* @fullPath api.joomla.tags.
|
|
172
|
+
* @fullPath api.joomla.tags.list
|
|
173
173
|
* @service joomla
|
|
174
174
|
* @domain content-management
|
|
175
|
-
* @dataMethod
|
|
175
|
+
* @dataMethod listData() - returns only the tags array without metadata
|
|
176
176
|
* @discoverable true
|
|
177
177
|
*/
|
|
178
|
-
|
|
178
|
+
list: (params?: TagsParams) => Promise<TagsResponse>;
|
|
179
179
|
/**
|
|
180
180
|
* Get tags data only - /tags GET (data method)
|
|
181
|
-
* @fullPath api.joomla.tags.
|
|
181
|
+
* @fullPath api.joomla.tags.listData
|
|
182
182
|
* @service joomla
|
|
183
183
|
* @domain content-management
|
|
184
|
-
* @dataMethod
|
|
184
|
+
* @dataMethod listData() - returns only the tags array without metadata
|
|
185
185
|
* @discoverable true
|
|
186
186
|
* @searchTerms ["tags data", "content tags data", "get tags data only"]
|
|
187
|
-
* @relatedEndpoints ["api.joomla.tags.
|
|
187
|
+
* @relatedEndpoints ["api.joomla.tags.list"]
|
|
188
188
|
* @commonPatterns ["extract tags data", "get content tags data only"]
|
|
189
189
|
*/
|
|
190
|
-
|
|
190
|
+
listData: (params?: TagsParams) => Promise<Record<string, unknown>[]>;
|
|
191
191
|
};
|
|
192
192
|
/**
|
|
193
193
|
* Users endpoints - /users
|
|
@@ -195,28 +195,28 @@ export declare class JoomlaClient extends BaseServiceClient {
|
|
|
195
195
|
users: {
|
|
196
196
|
/**
|
|
197
197
|
* List users - /users GET
|
|
198
|
-
* @fullPath api.joomla.users.
|
|
198
|
+
* @fullPath api.joomla.users.list
|
|
199
199
|
* @service joomla
|
|
200
200
|
* @domain user-management
|
|
201
|
-
* @dataMethod
|
|
201
|
+
* @dataMethod listData() - returns only the users array without metadata
|
|
202
202
|
* @discoverable true
|
|
203
203
|
* @searchTerms ["users", "list users", "get users", "user management", "user list"]
|
|
204
|
-
* @relatedEndpoints ["api.joomla.users.create", "api.joomla.users.
|
|
204
|
+
* @relatedEndpoints ["api.joomla.users.create", "api.joomla.users.get"]
|
|
205
205
|
* @commonPatterns ["list all users", "get user list", "user management"]
|
|
206
206
|
*/
|
|
207
|
-
|
|
207
|
+
list: (params?: UsersParams) => Promise<UsersResponse>;
|
|
208
208
|
/**
|
|
209
209
|
* Get users data only - /users GET (data method)
|
|
210
|
-
* @fullPath api.joomla.users.
|
|
210
|
+
* @fullPath api.joomla.users.listData
|
|
211
211
|
* @service joomla
|
|
212
212
|
* @domain user-management
|
|
213
|
-
* @dataMethod
|
|
213
|
+
* @dataMethod listData() - returns only the users array without metadata
|
|
214
214
|
* @discoverable true
|
|
215
215
|
* @searchTerms ["users data", "get users data", "user list data"]
|
|
216
|
-
* @relatedEndpoints ["api.joomla.users.
|
|
216
|
+
* @relatedEndpoints ["api.joomla.users.list"]
|
|
217
217
|
* @commonPatterns ["extract users data", "get user list data only"]
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
listData: (params?: UsersParams) => Promise<Record<string, unknown>[]>;
|
|
220
220
|
/**
|
|
221
221
|
* Create user - /users POST
|
|
222
222
|
* @fullPath api.joomla.users.create
|
|
@@ -250,28 +250,28 @@ export declare class JoomlaClient extends BaseServiceClient {
|
|
|
250
250
|
}>;
|
|
251
251
|
/**
|
|
252
252
|
* Get user by ID - /users/{id} GET
|
|
253
|
-
* @fullPath api.joomla.users.
|
|
253
|
+
* @fullPath api.joomla.users.get
|
|
254
254
|
* @service joomla
|
|
255
255
|
* @domain user-management
|
|
256
|
-
* @dataMethod
|
|
256
|
+
* @dataMethod getData() - returns only the user data without metadata
|
|
257
257
|
* @discoverable true
|
|
258
258
|
* @searchTerms ["user by id", "get user", "single user", "user details"]
|
|
259
|
-
* @relatedEndpoints ["api.joomla.users.
|
|
259
|
+
* @relatedEndpoints ["api.joomla.users.list", "api.joomla.users.update", "api.joomla.users.delete"]
|
|
260
260
|
* @commonPatterns ["get user details", "fetch user by id", "user profile"]
|
|
261
261
|
*/
|
|
262
|
-
|
|
262
|
+
get: (userId: number | string) => Promise<UsersIdResponse>;
|
|
263
263
|
/**
|
|
264
264
|
* Get user by ID data only - /users/{id} GET (data method)
|
|
265
|
-
* @fullPath api.joomla.users.
|
|
265
|
+
* @fullPath api.joomla.users.getData
|
|
266
266
|
* @service joomla
|
|
267
267
|
* @domain user-management
|
|
268
|
-
* @dataMethod
|
|
268
|
+
* @dataMethod getData() - returns only the user data without metadata
|
|
269
269
|
* @discoverable true
|
|
270
270
|
* @searchTerms ["user data by id", "get user data", "single user data"]
|
|
271
|
-
* @relatedEndpoints ["api.joomla.users.
|
|
271
|
+
* @relatedEndpoints ["api.joomla.users.get"]
|
|
272
272
|
* @commonPatterns ["extract user data", "get user data only"]
|
|
273
273
|
*/
|
|
274
|
-
|
|
274
|
+
getData: (userId: number | string) => Promise<{
|
|
275
275
|
params: string;
|
|
276
276
|
id: number;
|
|
277
277
|
name: string;
|
|
@@ -480,28 +480,28 @@ export declare class JoomlaClient extends BaseServiceClient {
|
|
|
480
480
|
groups: {
|
|
481
481
|
/**
|
|
482
482
|
* List user groups - /users/{id}/groups GET
|
|
483
|
-
* @fullPath api.joomla.users.groups.
|
|
483
|
+
* @fullPath api.joomla.users.groups.list
|
|
484
484
|
* @service joomla
|
|
485
485
|
* @domain user-management
|
|
486
|
-
* @dataMethod
|
|
486
|
+
* @dataMethod listData() - returns only the user groups array without metadata
|
|
487
487
|
* @discoverable true
|
|
488
488
|
* @searchTerms ["user groups", "user group list", "groups for user"]
|
|
489
|
-
* @relatedEndpoints ["api.joomla.users.groups.create", "api.joomla.userGroups.
|
|
489
|
+
* @relatedEndpoints ["api.joomla.users.groups.create", "api.joomla.userGroups.list"]
|
|
490
490
|
* @commonPatterns ["get user groups", "list user group memberships"]
|
|
491
491
|
*/
|
|
492
|
-
|
|
492
|
+
list: (userId: string, params?: UsersIdGroupsParams) => Promise<UsersIdGroupsResponse>;
|
|
493
493
|
/**
|
|
494
494
|
* Get user groups data only - /users/{id}/groups GET (data method)
|
|
495
|
-
* @fullPath api.joomla.users.groups.
|
|
495
|
+
* @fullPath api.joomla.users.groups.listData
|
|
496
496
|
* @service joomla
|
|
497
497
|
* @domain user-management
|
|
498
|
-
* @dataMethod
|
|
498
|
+
* @dataMethod listData() - returns only the user groups array without metadata
|
|
499
499
|
* @discoverable true
|
|
500
500
|
* @searchTerms ["user groups data", "user group list data", "groups data"]
|
|
501
|
-
* @relatedEndpoints ["api.joomla.users.groups.
|
|
501
|
+
* @relatedEndpoints ["api.joomla.users.groups.list"]
|
|
502
502
|
* @commonPatterns ["extract user groups data", "get groups data only"]
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
listData: (userId: string, params?: UsersIdGroupsParams) => Promise<Record<string, unknown>[]>;
|
|
505
505
|
/**
|
|
506
506
|
* Create user group mapping - /users/{id}/groups POST
|
|
507
507
|
* @fullPath api.joomla.users.groups.create
|
|
@@ -528,28 +528,28 @@ export declare class JoomlaClient extends BaseServiceClient {
|
|
|
528
528
|
createData: (userId: number | string, request: UsersIdGroupsCreateRequest) => Promise<Record<string, unknown>>;
|
|
529
529
|
/**
|
|
530
530
|
* Get specific user group - /users/{id}/groups/{groupId} GET
|
|
531
|
-
* @fullPath api.joomla.users.groups.
|
|
531
|
+
* @fullPath api.joomla.users.groups.get
|
|
532
532
|
* @service joomla
|
|
533
533
|
* @domain user-management
|
|
534
|
-
* @dataMethod
|
|
534
|
+
* @dataMethod getData() - returns only the user group data without metadata
|
|
535
535
|
* @discoverable true
|
|
536
536
|
* @searchTerms ["user group by id", "specific user group", "user group details"]
|
|
537
|
-
* @relatedEndpoints ["api.joomla.users.groups.
|
|
537
|
+
* @relatedEndpoints ["api.joomla.users.groups.list", "api.joomla.userGroups.list"]
|
|
538
538
|
* @commonPatterns ["get specific user group", "fetch user group details"]
|
|
539
539
|
*/
|
|
540
|
-
|
|
540
|
+
get: (userId: string, groupId: number | string) => Promise<UsersIdGroupsGroupIdResponse>;
|
|
541
541
|
/**
|
|
542
542
|
* Get specific user group data only - /users/{id}/groups/{groupId} GET (data method)
|
|
543
|
-
* @fullPath api.joomla.users.groups.
|
|
543
|
+
* @fullPath api.joomla.users.groups.getData
|
|
544
544
|
* @service joomla
|
|
545
545
|
* @domain user-management
|
|
546
|
-
* @dataMethod
|
|
546
|
+
* @dataMethod getData() - returns only the user group data without metadata
|
|
547
547
|
* @discoverable true
|
|
548
548
|
* @searchTerms ["user group data by id", "specific user group data", "user group details data"]
|
|
549
|
-
* @relatedEndpoints ["api.joomla.users.groups.
|
|
549
|
+
* @relatedEndpoints ["api.joomla.users.groups.get"]
|
|
550
550
|
* @commonPatterns ["extract user group data", "get specific group data only"]
|
|
551
551
|
*/
|
|
552
|
-
|
|
552
|
+
getData: (userId: string, groupId: number | string) => Promise<Record<string, unknown>>;
|
|
553
553
|
};
|
|
554
554
|
/**
|
|
555
555
|
* Password verification - /users/verify-password
|
|
@@ -593,28 +593,28 @@ export declare class JoomlaClient extends BaseServiceClient {
|
|
|
593
593
|
userGroups: {
|
|
594
594
|
/**
|
|
595
595
|
* List user groups - /usergroups GET
|
|
596
|
-
* @fullPath api.joomla.userGroups.
|
|
596
|
+
* @fullPath api.joomla.userGroups.list
|
|
597
597
|
* @service joomla
|
|
598
598
|
* @domain user-management
|
|
599
|
-
* @dataMethod
|
|
599
|
+
* @dataMethod listData() - returns only the groups array without metadata
|
|
600
600
|
* @discoverable true
|
|
601
601
|
* @searchTerms ["user groups", "list groups", "all groups", "group management"]
|
|
602
|
-
* @relatedEndpoints ["api.joomla.users.groups.
|
|
602
|
+
* @relatedEndpoints ["api.joomla.users.groups.list"]
|
|
603
603
|
* @commonPatterns ["list all user groups", "get available groups", "group management"]
|
|
604
604
|
*/
|
|
605
|
-
|
|
605
|
+
list: (params?: UserGroupsParams) => Promise<UserGroupsResponse>;
|
|
606
606
|
/**
|
|
607
607
|
* Get user groups data only - /usergroups GET (data method)
|
|
608
|
-
* @fullPath api.joomla.userGroups.
|
|
608
|
+
* @fullPath api.joomla.userGroups.listData
|
|
609
609
|
* @service joomla
|
|
610
610
|
* @domain user-management
|
|
611
|
-
* @dataMethod
|
|
611
|
+
* @dataMethod listData() - returns only the groups array without metadata
|
|
612
612
|
* @discoverable true
|
|
613
613
|
* @searchTerms ["user groups data", "list groups data", "all groups data"]
|
|
614
|
-
* @relatedEndpoints ["api.joomla.userGroups.
|
|
614
|
+
* @relatedEndpoints ["api.joomla.userGroups.list"]
|
|
615
615
|
* @commonPatterns ["extract groups data", "get groups data only"]
|
|
616
616
|
*/
|
|
617
|
-
|
|
617
|
+
listData: (params?: UserGroupsParams) => Promise<{
|
|
618
618
|
id: number;
|
|
619
619
|
parent_id: number;
|
|
620
620
|
lft: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/services/joomla/client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAiCL,KAAK,aAAa,EAClB,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,mBAAmB,EACxB,KAAK,iBAAiB,EACtB,KAAK,UAAU,EACf,KAAK,YAAY,EACjB,KAAK,4BAA4B,EACjC,KAAK,mBAAmB,EACxB,KAAK,qBAAqB,EAC1B,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAChC,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,EAC3B,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,kBAAkB,EACvB,KAAK,mBAAmB,EACxB,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAGjC,MAAM,WAAW,CAAC;AAEnB;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,YAAa,SAAQ,iBAAiB;gBACrC,IAAI,EAAE,UAAU,EAAE,OAAO,GAAE,MAAuC;IAI9E;;OAEG;IACH,OAAO;QACL;;;;;;;;;;WAUG;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/services/joomla/client.ts"],"names":[],"mappings":"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"}
|