@taruvi/sdk 1.4.7 → 1.4.8-beta.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.
@@ -4,6 +4,9 @@ on:
4
4
  push:
5
5
  branches: [main, beta]
6
6
 
7
+ permissions:
8
+ contents: write
9
+
7
10
  jobs:
8
11
  publish:
9
12
  runs-on: ubuntu-latest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taruvi/sdk",
3
- "version": "1.4.7",
3
+ "version": "1.4.8-beta.1",
4
4
  "description": "Taruvi SDK",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -70,6 +70,7 @@ export interface UserListFilters {
70
70
  is_staff?: boolean
71
71
  is_superuser?: boolean
72
72
  is_deleted?: boolean
73
+ roles?: string
73
74
  ordering?: string
74
75
  page?: number
75
76
  page_size?: number
@@ -25,6 +25,7 @@ export class HttpClient {
25
25
 
26
26
  private setupInterceptors(): void {
27
27
  // Request interceptor: attach session token
28
+ console.log("test")
28
29
  this.axiosInstance.interceptors.request.use((config: InternalAxiosRequestConfig) => {
29
30
  const isFormData = config.data instanceof FormData
30
31
  if (!isFormData) {
@@ -1,19 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(tree:*)",
5
- "Bash(npm run build:*)",
6
- "Bash(npm ls:*)",
7
- "Bash(npm link:*)",
8
- "Bash(npx --yes markdownlint-cli:*)",
9
- "Bash(cat:*)",
10
- "Bash(test:*)",
11
- "Bash(ls:*)",
12
- "WebFetch(domain:www.markdownpaste.com)",
13
- "WebSearch",
14
- "WebFetch(domain:supabase.com)"
15
- ],
16
- "deny": [],
17
- "ask": []
18
- }
19
- }