@verdocs/js-sdk 4.2.49 → 4.2.51

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/dist/index.d.mts CHANGED
@@ -693,6 +693,8 @@ interface IRole {
693
693
  name: string;
694
694
  type: TRecipientType;
695
695
  full_name: string | null;
696
+ first_name: string | null;
697
+ last_name: string | null;
696
698
  email: string | null;
697
699
  phone: string | null;
698
700
  message: string | null;
@@ -2037,7 +2039,7 @@ declare const declineOrganizationInvitation: (endpoint: VerdocsEndpoint, email:
2037
2039
  * ```typescript
2038
2040
  * import {getOrganizationMembers} from '@verdocs/js-sdk';
2039
2041
  *
2040
- * const members = await deleteOrganizationMember(VerdocsEndpoint.getDefault()});
2042
+ * const members = await getOrganizationMembers(VerdocsEndpoint.getDefault()});
2041
2043
  * ```
2042
2044
  */
2043
2045
  declare const getOrganizationMembers: (endpoint: VerdocsEndpoint) => Promise<IProfile[]>;
package/dist/index.d.ts CHANGED
@@ -693,6 +693,8 @@ interface IRole {
693
693
  name: string;
694
694
  type: TRecipientType;
695
695
  full_name: string | null;
696
+ first_name: string | null;
697
+ last_name: string | null;
696
698
  email: string | null;
697
699
  phone: string | null;
698
700
  message: string | null;
@@ -2037,7 +2039,7 @@ declare const declineOrganizationInvitation: (endpoint: VerdocsEndpoint, email:
2037
2039
  * ```typescript
2038
2040
  * import {getOrganizationMembers} from '@verdocs/js-sdk';
2039
2041
  *
2040
- * const members = await deleteOrganizationMember(VerdocsEndpoint.getDefault()});
2042
+ * const members = await getOrganizationMembers(VerdocsEndpoint.getDefault()});
2041
2043
  * ```
2042
2044
  */
2043
2045
  declare const getOrganizationMembers: (endpoint: VerdocsEndpoint) => Promise<IProfile[]>;
package/dist/index.js CHANGED
@@ -1951,7 +1951,7 @@ const declineOrganizationInvitation = (endpoint, email, token) => endpoint.api /
1951
1951
  * ```typescript
1952
1952
  * import {getOrganizationMembers} from '@verdocs/js-sdk';
1953
1953
  *
1954
- * const members = await deleteOrganizationMember(VerdocsEndpoint.getDefault()});
1954
+ * const members = await getOrganizationMembers(VerdocsEndpoint.getDefault()});
1955
1955
  * ```
1956
1956
  */
1957
1957
  const getOrganizationMembers = (endpoint) => endpoint.api //