@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.
Files changed (59) hide show
  1. package/README.md +1 -0
  2. package/analytics/business-area-user.model.d.ts +29 -0
  3. package/analytics/business-area.d.ts +16 -0
  4. package/analytics/business-group.d.ts +12 -0
  5. package/analytics/data-source-type.d.ts +12 -0
  6. package/analytics/data-source.d.ts +43 -0
  7. package/analytics/favorite.d.ts +14 -0
  8. package/analytics/features.d.ts +19 -0
  9. package/analytics/feed-model.d.ts +13 -0
  10. package/analytics/index.d.ts +20 -0
  11. package/analytics/indicator-market.d.ts +4 -0
  12. package/analytics/indicator.d.ts +31 -0
  13. package/analytics/insight-model.d.ts +14 -0
  14. package/analytics/model-query.d.ts +12 -0
  15. package/analytics/notification-destination.d.ts +10 -0
  16. package/analytics/role-permissions.d.ts +19 -0
  17. package/analytics/semantic-model.d.ts +42 -0
  18. package/analytics/story-point.d.ts +10 -0
  19. package/analytics/story-widget.d.ts +11 -0
  20. package/analytics/story.d.ts +18 -0
  21. package/analytics/subscription.d.ts +38 -0
  22. package/analytics/user-business-group.model.d.ts +29 -0
  23. package/analytics/visit.model.d.ts +27 -0
  24. package/analytics/webSocket.d.ts +40 -0
  25. package/base-entity.model.d.ts +21 -0
  26. package/contact.model.d.ts +41 -0
  27. package/core.model.d.ts +25 -0
  28. package/country.model.d.ts +5 -0
  29. package/currency.model.d.ts +579 -0
  30. package/email-template.model.d.ts +47 -0
  31. package/email.model.d.ts +36 -0
  32. package/employee.model.d.ts +128 -0
  33. package/entity-with-members.model.d.ts +13 -0
  34. package/feature.model.d.ts +134 -0
  35. package/file-provider.d.ts +31 -0
  36. package/help-center-article.model.d.ts +27 -0
  37. package/help-center.model.d.ts +28 -0
  38. package/http-status.enum.d.ts +57 -0
  39. package/import-export.model.d.ts +36 -0
  40. package/index.cjs +1283 -0
  41. package/index.d.ts +33 -0
  42. package/index.js +1272 -0
  43. package/language.model.d.ts +19 -0
  44. package/organization-contact.model.d.ts +73 -0
  45. package/organization-department.model.d.ts +20 -0
  46. package/organization-language.model.d.ts +18 -0
  47. package/organization-team-employee-model.d.ts +12 -0
  48. package/organization-team-model.d.ts +19 -0
  49. package/organization.model.d.ts +227 -0
  50. package/package.json +8 -0
  51. package/role-permission.model.d.ts +63 -0
  52. package/role.model.d.ts +21 -0
  53. package/seed.model.d.ts +38 -0
  54. package/tag-entity.model.d.ts +10 -0
  55. package/tenant.model.d.ts +24 -0
  56. package/translation.model.d.ts +20 -0
  57. package/user-organization.model.d.ts +24 -0
  58. package/user.model.d.ts +117 -0
  59. 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';