@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.
Files changed (31) hide show
  1. package/lib/openapi/organizations/BaseOrganizationsApiClient.d.ts +5 -5
  2. package/lib/openapi/organizations/BaseOrganizationsApiClient.js +15 -1
  3. package/lib/openapi/organizations/BaseOrganizationsApiClient.js.map +1 -1
  4. package/lib/openapi/organizations/models/common.d.ts +39 -4
  5. package/lib/openapi/organizations/models/common.js +6 -2
  6. package/lib/openapi/organizations/models/common.js.map +1 -1
  7. package/lib/openapi/organizations/models/directory.d.ts +0 -203
  8. package/lib/openapi/organizations/models/directory.js +0 -59
  9. package/lib/openapi/organizations/models/directory.js.map +1 -1
  10. package/lib/openapi/organizations/models/groups.d.ts +68 -5
  11. package/lib/openapi/organizations/models/groups.js +18 -1
  12. package/lib/openapi/organizations/models/groups.js.map +1 -1
  13. package/lib/openapi/organizations/models/users.d.ts +337 -5
  14. package/lib/openapi/organizations/models/users.js +87 -2
  15. package/lib/openapi/organizations/models/users.js.map +1 -1
  16. package/lib/openapi/organizations/services/DirectoryService.d.ts +3 -607
  17. package/lib/openapi/organizations/services/DirectoryService.js +0 -550
  18. package/lib/openapi/organizations/services/DirectoryService.js.map +1 -1
  19. package/lib/openapi/organizations/services/DomainsService.d.ts +4 -4
  20. package/lib/openapi/organizations/services/EventsService.d.ts +8 -8
  21. package/lib/openapi/organizations/services/GroupsService.d.ts +605 -17
  22. package/lib/openapi/organizations/services/GroupsService.js +466 -0
  23. package/lib/openapi/organizations/services/GroupsService.js.map +1 -1
  24. package/lib/openapi/organizations/services/OrgsService.d.ts +2 -2
  25. package/lib/openapi/organizations/services/PoliciesService.d.ts +18 -18
  26. package/lib/openapi/organizations/services/UsersService.d.ts +542 -26
  27. package/lib/openapi/organizations/services/UsersService.js +488 -8
  28. package/lib/openapi/organizations/services/UsersService.js.map +1 -1
  29. package/lib/openapi/organizations/services/ValidateService.d.ts +2 -2
  30. package/lib/openapi/organizations/services/WorkspacesService.d.ts +2 -2
  31. 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 is identified by a Unique ID. You get your organization ID
24
- * and Organization API key simultaneously.
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 is identified by a Unique ID. You get your organization ID
42
- * and Organization API key simultaneously.
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 is identified by a Unique ID. You get your organization ID
75
- * and Organization API key simultaneously.
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 is identified by a Unique ID. You get your organization ID
128
- * and Organization API key simultaneously.
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
  /**