@taruvi/sdk 1.2.9 → 1.3.0

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taruvi/sdk",
3
- "version": "1.2.9",
3
+ "version": "1.3.0",
4
4
  "description": "Taruvi SDK",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -16,7 +16,7 @@ export { Analytics } from "./lib/Analytics/AnalyticsClient.js"
16
16
  // Export types
17
17
  export type { TaruviConfig, StorageFilters, DatabaseFilters } from "./types.js"
18
18
  export type { AuthTokens } from "./lib-internal/token/TokenClient.js"
19
- export type { UserCreateRequest, UserCreateResponse as UserResponse, UserDataResponse, UserUpdateRequest, UserUpdateResponse } from "./lib/user/types.js"
19
+ export type { UserCreateRequest, UserCreateResponse as UserResponse, UserDataResponse, UserUpdateRequest, UserUpdateResponse, UserGroup, UserPermission, UserRole, UserList, UserApp, UserAppsResponse } from "./lib/user/types.js"
20
20
  export type { Principal, Resource, Resources } from "./lib/Policy/types.js"
21
21
  export type { RoleResponse, SettingsResponse as AppSettingsResponse } from "./lib/App/types.js"
22
22
  export type { FunctionRequest, FunctionResponse, FunctionInvocation } from "./lib/Function/types.js"