@resolution/organizations-api-client 0.15.8 → 0.15.9
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/lib/openapi/organizations/BaseOrganizationsApiClient.d.ts +5 -5
- package/lib/openapi/organizations/BaseOrganizationsApiClient.js +15 -1
- package/lib/openapi/organizations/BaseOrganizationsApiClient.js.map +1 -1
- package/lib/openapi/organizations/models/common.d.ts +39 -4
- package/lib/openapi/organizations/models/common.js +6 -2
- package/lib/openapi/organizations/models/common.js.map +1 -1
- package/lib/openapi/organizations/models/directory.d.ts +0 -203
- package/lib/openapi/organizations/models/directory.js +0 -59
- package/lib/openapi/organizations/models/directory.js.map +1 -1
- package/lib/openapi/organizations/models/groups.d.ts +68 -5
- package/lib/openapi/organizations/models/groups.js +18 -1
- package/lib/openapi/organizations/models/groups.js.map +1 -1
- package/lib/openapi/organizations/models/users.d.ts +337 -5
- package/lib/openapi/organizations/models/users.js +87 -2
- package/lib/openapi/organizations/models/users.js.map +1 -1
- package/lib/openapi/organizations/services/DirectoryService.d.ts +3 -607
- package/lib/openapi/organizations/services/DirectoryService.js +0 -550
- package/lib/openapi/organizations/services/DirectoryService.js.map +1 -1
- package/lib/openapi/organizations/services/DomainsService.d.ts +4 -4
- package/lib/openapi/organizations/services/EventsService.d.ts +8 -8
- package/lib/openapi/organizations/services/GroupsService.d.ts +605 -17
- package/lib/openapi/organizations/services/GroupsService.js +466 -0
- package/lib/openapi/organizations/services/GroupsService.js.map +1 -1
- package/lib/openapi/organizations/services/OrgsService.d.ts +2 -2
- package/lib/openapi/organizations/services/PoliciesService.d.ts +18 -18
- package/lib/openapi/organizations/services/UsersService.d.ts +542 -26
- package/lib/openapi/organizations/services/UsersService.js +488 -8
- package/lib/openapi/organizations/services/UsersService.js.map +1 -1
- package/lib/openapi/organizations/services/ValidateService.d.ts +2 -2
- package/lib/openapi/organizations/services/WorkspacesService.d.ts +2 -2
- package/package.json +3 -3
|
@@ -20,8 +20,8 @@ export declare class EventsService extends CommonHttpService {
|
|
|
20
20
|
*/
|
|
21
21
|
getEventActions: ({ orgId }: {
|
|
22
22
|
/**
|
|
23
|
-
* Your organization
|
|
24
|
-
*
|
|
23
|
+
* Your organization has a unique ID. Find this ID in your Atlassian
|
|
24
|
+
* Administration URL or when you create your API key.
|
|
25
25
|
*/
|
|
26
26
|
orgId: string;
|
|
27
27
|
}) => Promise<EventActions>;
|
|
@@ -38,8 +38,8 @@ export declare class EventsService extends CommonHttpService {
|
|
|
38
38
|
*/
|
|
39
39
|
getEventById: ({ orgId, eventId }: {
|
|
40
40
|
/**
|
|
41
|
-
* Your organization
|
|
42
|
-
*
|
|
41
|
+
* Your organization has a unique ID. Find this ID in your Atlassian
|
|
42
|
+
* Administration URL or when you create your API key.
|
|
43
43
|
*/
|
|
44
44
|
orgId: string;
|
|
45
45
|
/** ID of the event to return */
|
|
@@ -71,8 +71,8 @@ export declare class EventsService extends CommonHttpService {
|
|
|
71
71
|
*/
|
|
72
72
|
getEvents: ({ orgId, cursor, q, from, to, action, actor, ip, product, location, limit }: {
|
|
73
73
|
/**
|
|
74
|
-
* Your organization
|
|
75
|
-
*
|
|
74
|
+
* Your organization has a unique ID. Find this ID in your Atlassian
|
|
75
|
+
* Administration URL or when you create your API key.
|
|
76
76
|
*/
|
|
77
77
|
orgId: string;
|
|
78
78
|
/** Sets the starting point for the page of results to return */
|
|
@@ -124,8 +124,8 @@ export declare class EventsService extends CommonHttpService {
|
|
|
124
124
|
*/
|
|
125
125
|
pollEvents: ({ orgId, cursor, from, to, limit, sortOrder }: {
|
|
126
126
|
/**
|
|
127
|
-
* Your organization
|
|
128
|
-
*
|
|
127
|
+
* Your organization has a unique ID. Find this ID in your Atlassian
|
|
128
|
+
* Administration URL or when you create your API key.
|
|
129
129
|
*/
|
|
130
130
|
orgId: string;
|
|
131
131
|
/**
|