whio-api-sdk 1.0.222-beta-staging → 1.0.223-beta-staging
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { User } from './user.types';
|
|
2
2
|
import { AgentOrganization } from './agent.types';
|
|
3
|
+
import { ExternalIntegration } from './external-integration.types';
|
|
3
4
|
export interface OrganizationRole {
|
|
4
5
|
id: string;
|
|
5
6
|
name: string;
|
|
@@ -27,6 +28,7 @@ export interface Organization {
|
|
|
27
28
|
users?: User[];
|
|
28
29
|
roles?: OrganizationRole[];
|
|
29
30
|
agents?: AgentOrganization[];
|
|
31
|
+
externalIntegration?: ExternalIntegration;
|
|
30
32
|
}
|
|
31
33
|
export interface CreateOrganizationDto {
|
|
32
34
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { User } from './user.types';
|
|
2
2
|
import { AgentOrganization } from './agent.types';
|
|
3
|
+
import { ExternalIntegration } from './external-integration.types';
|
|
3
4
|
|
|
4
5
|
// Organization Role type
|
|
5
6
|
export interface OrganizationRole {
|
|
@@ -35,6 +36,7 @@ export interface Organization {
|
|
|
35
36
|
users?: User[];
|
|
36
37
|
roles?: OrganizationRole[];
|
|
37
38
|
agents?: AgentOrganization[];
|
|
39
|
+
externalIntegration?: ExternalIntegration;
|
|
38
40
|
}
|
|
39
41
|
|
|
40
42
|
// Organization DTOs
|