@metad/contracts 0.0.1
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 +1 -0
- package/analytics/business-area-user.model.d.ts +29 -0
- package/analytics/business-area.d.ts +16 -0
- package/analytics/business-group.d.ts +12 -0
- package/analytics/data-source-type.d.ts +12 -0
- package/analytics/data-source.d.ts +43 -0
- package/analytics/favorite.d.ts +14 -0
- package/analytics/features.d.ts +19 -0
- package/analytics/feed-model.d.ts +13 -0
- package/analytics/index.d.ts +20 -0
- package/analytics/indicator-market.d.ts +4 -0
- package/analytics/indicator.d.ts +31 -0
- package/analytics/insight-model.d.ts +14 -0
- package/analytics/model-query.d.ts +12 -0
- package/analytics/notification-destination.d.ts +10 -0
- package/analytics/role-permissions.d.ts +19 -0
- package/analytics/semantic-model.d.ts +42 -0
- package/analytics/story-point.d.ts +10 -0
- package/analytics/story-widget.d.ts +11 -0
- package/analytics/story.d.ts +18 -0
- package/analytics/subscription.d.ts +38 -0
- package/analytics/user-business-group.model.d.ts +29 -0
- package/analytics/visit.model.d.ts +27 -0
- package/analytics/webSocket.d.ts +40 -0
- package/base-entity.model.d.ts +21 -0
- package/contact.model.d.ts +41 -0
- package/core.model.d.ts +25 -0
- package/country.model.d.ts +5 -0
- package/currency.model.d.ts +579 -0
- package/email-template.model.d.ts +47 -0
- package/email.model.d.ts +36 -0
- package/employee.model.d.ts +128 -0
- package/entity-with-members.model.d.ts +13 -0
- package/feature.model.d.ts +134 -0
- package/file-provider.d.ts +31 -0
- package/help-center-article.model.d.ts +27 -0
- package/help-center.model.d.ts +28 -0
- package/http-status.enum.d.ts +57 -0
- package/import-export.model.d.ts +36 -0
- package/index.cjs +1283 -0
- package/index.d.ts +33 -0
- package/index.js +1272 -0
- package/language.model.d.ts +19 -0
- package/organization-contact.model.d.ts +73 -0
- package/organization-department.model.d.ts +20 -0
- package/organization-language.model.d.ts +18 -0
- package/organization-team-employee-model.d.ts +12 -0
- package/organization-team-model.d.ts +19 -0
- package/organization.model.d.ts +227 -0
- package/package.json +8 -0
- package/role-permission.model.d.ts +63 -0
- package/role.model.d.ts +21 -0
- package/seed.model.d.ts +38 -0
- package/tag-entity.model.d.ts +10 -0
- package/tenant.model.d.ts +24 -0
- package/translation.model.d.ts +20 -0
- package/user-organization.model.d.ts +24 -0
- package/user.model.d.ts +117 -0
- package/visibility.model.d.ts +5 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export * from './contact.model';
|
|
2
|
+
export * from './core.model';
|
|
3
|
+
export * from './country.model';
|
|
4
|
+
export * from './currency.model';
|
|
5
|
+
export * from './email-template.model';
|
|
6
|
+
export * from './email.model';
|
|
7
|
+
export * from './employee.model';
|
|
8
|
+
export * from './entity-with-members.model';
|
|
9
|
+
export * from './feature.model';
|
|
10
|
+
export * from './file-provider';
|
|
11
|
+
export * from './help-center-article.model';
|
|
12
|
+
export * from './help-center.model';
|
|
13
|
+
export * from './http-status.enum';
|
|
14
|
+
export * from './import-export.model';
|
|
15
|
+
export * from './language.model';
|
|
16
|
+
export * from './organization-contact.model';
|
|
17
|
+
export * from './organization-department.model';
|
|
18
|
+
export * from './organization-language.model';
|
|
19
|
+
export * from './organization-team-employee-model';
|
|
20
|
+
export * from './organization-team-model';
|
|
21
|
+
export * from './organization.model';
|
|
22
|
+
export * from './role-permission.model';
|
|
23
|
+
export * from './seed.model';
|
|
24
|
+
export * from './tag-entity.model';
|
|
25
|
+
export * from './tenant.model';
|
|
26
|
+
export * from './translation.model';
|
|
27
|
+
export * from './user-organization.model';
|
|
28
|
+
export * from './user.model';
|
|
29
|
+
export * from './role.model';
|
|
30
|
+
export { ID, IBaseEntityModel as BaseEntityModel } from './base-entity.model';
|
|
31
|
+
export { IBasePerTenantAndOrganizationEntityModel, IBasePerTenantEntityModel } from './base-entity.model';
|
|
32
|
+
export * from './analytics/index';
|
|
33
|
+
export * from './visibility.model';
|