@space-df/sdk 0.0.1-dev.13 → 0.0.1-dev.14

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 (44) hide show
  1. package/api.doc.md +225 -219
  2. package/dist/package.json +1 -1
  3. package/dist/resources/auth/auth.d.ts +0 -1
  4. package/dist/resources/auth/auth.d.ts.map +1 -1
  5. package/dist/resources/auth/space-policies.d.ts +6 -3
  6. package/dist/resources/auth/space-policies.d.ts.map +1 -1
  7. package/dist/resources/auth/space-policies.js +16 -5
  8. package/dist/resources/auth/space-policies.js.map +1 -1
  9. package/dist/resources/auth/space-policies.mjs +16 -5
  10. package/dist/resources/auth/space-policies.mjs.map +1 -1
  11. package/dist/resources/auth/space-role-users.d.ts +11 -7
  12. package/dist/resources/auth/space-role-users.d.ts.map +1 -1
  13. package/dist/resources/auth/space-role-users.js +15 -12
  14. package/dist/resources/auth/space-role-users.js.map +1 -1
  15. package/dist/resources/auth/space-role-users.mjs +15 -12
  16. package/dist/resources/auth/space-role-users.mjs.map +1 -1
  17. package/dist/resources/auth/space-roles.d.ts +14 -3
  18. package/dist/resources/auth/space-roles.d.ts.map +1 -1
  19. package/dist/resources/auth/space-roles.js +14 -12
  20. package/dist/resources/auth/space-roles.js.map +1 -1
  21. package/dist/resources/auth/space-roles.mjs +14 -12
  22. package/dist/resources/auth/space-roles.mjs.map +1 -1
  23. package/dist/resources/auth/spaces.d.ts +11 -3
  24. package/dist/resources/auth/spaces.d.ts.map +1 -1
  25. package/dist/resources/auth/spaces.js +14 -8
  26. package/dist/resources/auth/spaces.js.map +1 -1
  27. package/dist/resources/auth/spaces.mjs +14 -8
  28. package/dist/resources/auth/spaces.mjs.map +1 -1
  29. package/dist/src/resources/auth/auth.ts +0 -2
  30. package/dist/src/resources/auth/space-policies.ts +22 -7
  31. package/dist/src/resources/auth/space-role-users.ts +24 -16
  32. package/dist/src/resources/auth/space-roles.ts +27 -12
  33. package/dist/src/resources/auth/spaces.ts +26 -11
  34. package/dist/src/version.ts +1 -1
  35. package/dist/version.d.ts +1 -1
  36. package/dist/version.js +1 -1
  37. package/dist/version.mjs +1 -1
  38. package/package.json +1 -1
  39. package/src/resources/auth/auth.ts +0 -2
  40. package/src/resources/auth/space-policies.ts +22 -7
  41. package/src/resources/auth/space-role-users.ts +24 -16
  42. package/src/resources/auth/space-roles.ts +27 -12
  43. package/src/resources/auth/spaces.ts +26 -11
  44. package/src/version.ts +1 -1
package/api.doc.md CHANGED
@@ -9,16 +9,16 @@
9
9
 
10
10
  # Table of Contents
11
11
 
12
- - [Auth](#Auth)
13
- - [Credentials](#credentials)
14
- - [Space Policies](#space-policies)
15
- - [Space Role Users](#space-role-users)
16
- - [Space Roles](#space-roles)
17
- - [Spaces](#spaces)
18
- - [Oauth2](#oauth2)
19
- - [Dashboards](#dashboards)
20
- - [Device States](#deviceStates)
21
- - [Users](#users)
12
+ - [Auth](#Auth)
13
+ - [Credentials](#credentials)
14
+ - [Space Policies](#space-policies)
15
+ - [Space Role Users](#space-role-users)
16
+ - [Space Roles](#space-roles)
17
+ - [Spaces](#spaces)
18
+ - [Oauth2](#oauth2)
19
+ - [Dashboards](#dashboards)
20
+ - [Device States](#deviceStates)
21
+ - [Users](#users)
22
22
 
23
23
  # Auth
24
24
 
@@ -41,10 +41,10 @@ login(body: AuthLoginParams, options?: Core.RequestOptions): Core.APIPromise<Tok
41
41
 
42
42
  **Parameters:**
43
43
 
44
- - `body` _(AuthLoginParams)_: Object containing user credentials.
45
- - `email` _(string)_: User's email address.
46
- - `password` _(string)_: User's password.
47
- - `options` _(Core.RequestOptions)_: Additional request options.
44
+ - `body` _(AuthLoginParams)_: Object containing user credentials.
45
+ - `email` _(string)_: User's email address.
46
+ - `password` _(string)_: User's password.
47
+ - `options` _(Core.RequestOptions)_: Additional request options.
48
48
 
49
49
  **Returns:** `Promise<TokenPair>`
50
50
 
@@ -72,9 +72,9 @@ oauth2Google(body: AuthOauth2GoogleParams, options?: Core.RequestOptions): Core.
72
72
 
73
73
  **Parameters:**
74
74
 
75
- - `body` _(AuthOauth2GoogleParams)_: Object containing OAuth2 parameters.
76
- - `authorization_code` _(string)_: The authorization code obtained from Google.
77
- - `code_verifier` _(string)_: The code verifier for PKCE.
75
+ - `body` _(AuthOauth2GoogleParams)_: Object containing OAuth2 parameters.
76
+ - `authorization_code` _(string)_: The authorization code obtained from Google.
77
+ - `code_verifier` _(string)_: The code verifier for PKCE.
78
78
 
79
79
  **Returns:** `Promise<OAuthLogin>`
80
80
 
@@ -102,8 +102,8 @@ googleLogin(body: GoogleLogin, options?: Core.RequestOptions): Core.APIPromise<A
102
102
 
103
103
  **Parameters:**
104
104
 
105
- - `body` _(GoogleLogin)_: Object containing the Google authorization code.
106
- - `authorization_code` _(string)_: The authorization code received from Google OAuth2.
105
+ - `body` _(GoogleLogin)_: Object containing the Google authorization code.
106
+ - `authorization_code` _(string)_: The authorization code received from Google OAuth2.
107
107
 
108
108
  **Returns:** `Promise<AuthTokenPair>`
109
109
 
@@ -130,9 +130,9 @@ oauthSendOtp(body: OAuthSendOtp, options?: Core.RequestOptions): Core.APIPromise
130
130
 
131
131
  **Parameters:**
132
132
 
133
- - `body` _(OAuthSendOtp)_: Object containing user email.
134
- - `email` _(string)_: The email address to send the OTP to.
135
- - `options` _(Core.RequestOptions)_: Additional request options.
133
+ - `body` _(OAuthSendOtp)_: Object containing user email.
134
+ - `email` _(string)_: The email address to send the OTP to.
135
+ - `options` _(Core.RequestOptions)_: Additional request options.
136
136
 
137
137
  **Returns:** `Promise<OAuthSendOtp>`
138
138
 
@@ -159,10 +159,10 @@ forgetPassword(body: ForgetPasswordParams, options?: Core.RequestOptions): Core.
159
159
 
160
160
  **Parameters:**
161
161
 
162
- - `body` _(ForgetPasswordParams)_: Object containing user credentials.
163
- - `token` _(string)_: The token associated with the user's account.
164
- - `password` _(string)_: The new password to set for the account.
165
- - `options` _(Core.RequestOptions)_: Additional request options.
162
+ - `body` _(ForgetPasswordParams)_: Object containing user credentials.
163
+ - `token` _(string)_: The token associated with the user's account.
164
+ - `password` _(string)_: The new password to set for the account.
165
+ - `options` _(Core.RequestOptions)_: Additional request options.
166
166
 
167
167
  **Returns:** `Promise<ForgetPasswordParams>`
168
168
 
@@ -190,9 +190,9 @@ sendEmailConfirm(body: OAuthSendEmail, options?: Core.RequestOptions): Core.APIP
190
190
 
191
191
  **Parameters:**
192
192
 
193
- - `body` _(OAuthSendEmail)_: Object containing user email.
194
- - `email` _(string)_: The email address to send the confirmation link to.
195
- - `options` _(Core.RequestOptions)_: Additional request options.
193
+ - `body` _(OAuthSendEmail)_: Object containing user email.
194
+ - `email` _(string)_: The email address to send the confirmation link to.
195
+ - `options` _(Core.RequestOptions)_: Additional request options.
196
196
 
197
197
  **Returns:** `Promise<OAuthSendEmail>`
198
198
 
@@ -219,9 +219,8 @@ refreshToken(body: AuthRefreshTokenParams, options?: Core.RequestOptions): Core.
219
219
 
220
220
  **Parameters:**
221
221
 
222
- - `body` _(AuthRefreshTokenParams)_: Object containing the refresh token.
223
- - `refresh` _(string)_: Refresh token.
224
- - `space_slug_name` _(string)_: The slug name of the workspace to refresh the token for.
222
+ - `body` _(AuthRefreshTokenParams)_: Object containing the refresh token.
223
+ - `refresh` _(string)_: Refresh token.
225
224
 
226
225
  **Returns:** `Promise<CustomTokenRefresh>`
227
226
 
@@ -249,12 +248,12 @@ register(body: AuthRegisterParams, options?: Core.RequestOptions): Core.APIPromi
249
248
 
250
249
  **Parameters:**
251
250
 
252
- - `body` _(AuthRegisterParams)_: Object containing user registration details.
253
- - `email` _(string)_: User's email address.
254
- - `password` _(string)_: User's chosen password.
255
- - `first_name` _(string)_: User's first name (optional).
256
- - `last_name` _(string)_: User's last name (optional).
257
- - `otp` _(string)_: User's OTP code (optional).
251
+ - `body` _(AuthRegisterParams)_: Object containing user registration details.
252
+ - `email` _(string)_: User's email address.
253
+ - `password` _(string)_: User's chosen password.
254
+ - `first_name` _(string)_: User's first name (optional).
255
+ - `last_name` _(string)_: User's last name (optional).
256
+ - `otp` _(string)_: User's OTP code (optional).
258
257
 
259
258
  **Returns:** `Promise<Registration>`
260
259
 
@@ -284,11 +283,11 @@ oauth2SpaceDF(body: OAuthSpaceDF, options?: Core.RequestOptions): Core.APIPromis
284
283
 
285
284
  **Parameters:**
286
285
 
287
- - `body` _(OAuthSpaceDF)_: Object containing OAuth2 parameters.
288
- - `code_verifier` _(string)_: The code verifier for PKCE.
289
- - `code` _(string)_: The authorization code obtained from SpaceDF Console.
290
- - `client_id` _(string)_: The client ID of the application.
291
- - `options` _(Core.RequestOptions)_: Additional request options.
286
+ - `body` _(OAuthSpaceDF)_: Object containing OAuth2 parameters.
287
+ - `code_verifier` _(string)_: The code verifier for PKCE.
288
+ - `code` _(string)_: The authorization code obtained from SpaceDF Console.
289
+ - `client_id` _(string)_: The client ID of the application.
290
+ - `options` _(Core.RequestOptions)_: Additional request options.
292
291
 
293
292
  **Returns:** `Promise<OAuthSpaceDF>`
294
293
 
@@ -317,10 +316,10 @@ switchSpaces(body: AuthRefreshTokenParams, options?: Core.RequestOptions): Core.
317
316
 
318
317
  **Parameters:**
319
318
 
320
- - `body` _(AuthRefreshTokenParams)_: Object containing the refresh token and target space.
321
- - `refresh` _(string)_: Refresh token.
322
- - `space` _(string)_: Target space to switch to.
323
- - `options` _(Core.RequestOptions)_: Additional request options.
319
+ - `body` _(AuthRefreshTokenParams)_: Object containing the refresh token and target space.
320
+ - `refresh` _(string)_: Refresh token.
321
+ - `space` _(string)_: Target space to switch to.
322
+ - `options` _(Core.RequestOptions)_: Additional request options.
324
323
 
325
324
  **Returns:** `Promise<CustomTokenRefresh>`
326
325
 
@@ -358,8 +357,8 @@ retrieve(id: number, options?: Core.RequestOptions): Core.APIPromise<SpacePolicy
358
357
 
359
358
  **Parameters:**
360
359
 
361
- - `id` _(number)_: The ID of the space policy to retrieve.
362
- - `options` _(Core.RequestOptions)_: Additional request options.
360
+ - `id` _(number)_: The ID of the space policy to retrieve.
361
+ - `options` _(Core.RequestOptions)_: Additional request options.
363
362
 
364
363
  **Returns:** `Promise<SpacePolicy>`
365
364
 
@@ -379,22 +378,23 @@ List all space policies or filter them based on query parameters.
379
378
  **Signature:**
380
379
 
381
380
  ```typescript
382
- list(query?: SpacePolicyListParams, options?: Core.RequestOptions): Core.APIPromise<SpacePolicyListResponse>;
383
- list(options?: Core.RequestOptions): Core.APIPromise<SpacePolicyListResponse>;
384
- list(query: SpacePolicyListParams | Core.RequestOptions = {}, options?: Core.RequestOptions): Core.APIPromise<SpacePolicyListResponse>
381
+ list(spaceName: string, query?: SpacePolicyListParams, options?: Core.RequestOptions): Core.APIPromise<SpacePolicyListResponse>;
382
+ list(spaceName: string, options?: Core.RequestOptions): Core.APIPromise<SpacePolicyListResponse>;
383
+ list(spaceName: string, query: SpacePolicyListParams | Core.RequestOptions = {}, options?: Core.RequestOptions): Core.APIPromise<SpacePolicyListResponse>
385
384
  ```
386
385
 
387
386
  **Parameters:**
388
387
 
389
- - `query` _(SpacePolicyListParams)_: (optional) Filters to apply when listing policies.
390
- - `options` _(Core.RequestOptions)_: Additional request options.
388
+ - `spaceName` _string_: The space slug name.
389
+ - `query` _(SpacePolicyListParams)_: (optional) Filters to apply when listing policies.
390
+ - `options` _(Core.RequestOptions)_: Additional request options.
391
391
 
392
392
  **Returns:** `Promise<SpacePolicyListResponse>`
393
393
 
394
394
  **Example:**
395
395
 
396
396
  ```typescript
397
- const spacePolicies = await client.spacePolicies.list({ page: 1, limit: 10 });
397
+ const spacePolicies = await client.spacePolicies.list('your-space-slug', { page: 1, limit: 10 });
398
398
  ```
399
399
 
400
400
  </details>
@@ -417,15 +417,15 @@ Retrieve a specific space role user by their ID.
417
417
  **Signature:**
418
418
 
419
419
  ```typescript
420
- retrieve(id: number, params: SpaceRoleUserRetrieveParams, options?: Core.RequestOptions): Core.APIPromise<SpaceRoleUser>
420
+ retrieve(id: number, params: SpaceRoleUsersParams, options?: Core.RequestOptions): Core.APIPromise<SpaceRoleUser>
421
421
  ```
422
422
 
423
423
  **Parameters:**
424
424
 
425
- - `id` _(number)_: The ID of the space role user to retrieve.
426
- - `params` _(SpaceRoleUserRetrieveParams)_: Parameters containing the space slug.
427
- - `X-Space`: _(string)_: Space slug name.
428
- - `options` _(Core.RequestOptions)_: Additional request options.
425
+ - `id` _(number)_: The ID of the space role user to retrieve.
426
+ - `params` _(SpaceRoleUsersParams)_: Parameters containing the space slug.
427
+ - `X-Space`: _(string)_: Space slug name.
428
+ - `options` _(Core.RequestOptions)_: Additional request options.
429
429
 
430
430
  **Returns:** `Promise<SpaceRoleUser>`
431
431
 
@@ -445,21 +445,21 @@ List all space role users or filter them based on query parameters.
445
445
  **Signature:**
446
446
 
447
447
  ```typescript
448
- list(params: SpaceRoleUserListParams, options?: Core.RequestOptions): Core.APIPromise<SpaceRoleUserListResponse>
448
+ list(spaceName: string, params: ListParamsResponse, options?: Core.RequestOptions): Core.APIPromise<SpaceRoleUserListResponse>
449
449
  ```
450
450
 
451
451
  **Parameters:**
452
452
 
453
- - `params` _(SpaceRoleUserListParams)_: Parameters containing the space slug and any additional filters.
454
- - `X-Space`: _(string)_: Header param for space slug name.
455
- - `options` _(Core.RequestOptions)_: Additional request options.
453
+ - `spaceName`: _(string)_: Header param for space slug name.
454
+ - `params` _(SpaceRoleUserListParams)_: Parameters containing any additional filters.
455
+ - `options` _(Core.RequestOptions)_: Additional request options.
456
456
 
457
457
  **Returns:** `Promise<SpaceRoleUserListResponse>`
458
458
 
459
459
  **Example:**
460
460
 
461
461
  ```typescript
462
- const spaceRoleUsers = await client.spaceRoleUsers.list({ 'X-Space': 'example-space', page: 1, limit: 10 });
462
+ const spaceRoleUsers = await client.spaceRoleUsers.list('example-space', { page: 1, limit: 10 });
463
463
  console.log(spaceRoleUsers);
464
464
  ```
465
465
 
@@ -478,17 +478,18 @@ update(id: number, params: SpaceRoleParams, options?: Core.RequestOptions): Core
478
478
 
479
479
  **Parameters:**
480
480
 
481
- - `id` _(number)_: The ID of the space role user to update.
482
- - `params` _(SpaceRoleParams)_: Parameters containing updated space role details.
483
- - `space_role`: _(string)_: The updated space role for the user.
484
- - `options` _(Core.RequestOptions)_: Additional request options.
481
+ - `id` _(number)_: The ID of the space role user to update.
482
+ - `params` _(SpaceRoleParams)_: Parameters containing updated space role details.
483
+ - `space_role`: _(string)_: The updated space role for the user.
484
+ - `X-Space`: _(string)_: The space slug name.
485
+ - `options` _(Core.RequestOptions)_: Additional request options.
485
486
 
486
487
  **Returns:** `Promise<SpaceRoleParams>`
487
488
 
488
489
  **Example:**
489
490
 
490
491
  ```typescript
491
- const updatedRole = await client.spaceRoleUsers.update(1, { space_role: 'new-role' });
492
+ const updatedRole = await client.spaceRoleUsers.update(1, { space_role: 'new-role', 'X-Space': 'your-space-slug' });
492
493
  console.log(updatedRole);
493
494
  ```
494
495
 
@@ -507,17 +508,18 @@ partialUpdate(id: number, params: SpaceRoleParams, options?: Core.RequestOptions
507
508
 
508
509
  **Parameters:**
509
510
 
510
- - `id` _(number)_: The ID of the space role user to partially update.
511
- - `params` _(SpaceRoleParams)_: Parameters containing updated space role details.
512
- - `space_role`: _(string)_: The updated space role for the user.
513
- - `options` _(Core.RequestOptions)_: Additional request options.
511
+ - `id` _(number)_: The ID of the space role user to partially update.
512
+ - `params` _(SpaceRoleParams)_: Parameters containing updated space role details.
513
+ - `space_role`: _(string)_: The updated space role for the user.
514
+ - `X-Space`: _(string)_: The space slug name.
515
+ - `options` _(Core.RequestOptions)_: Additional request options.
514
516
 
515
517
  **Returns:** `Promise<SpaceRoleParams>`
516
518
 
517
519
  **Example:**
518
520
 
519
521
  ```typescript
520
- const partialUpdatedRole = await client.spaceRoleUsers.partialUpdate(1, { space_role: 'another-role' });
522
+ const partialUpdatedRole = await client.spaceRoleUsers.partialUpdate(1, { space_role: 'another-role', 'X-Space': 'your-space-slug' });
521
523
  console.log(partialUpdatedRole);
522
524
  ```
523
525
 
@@ -531,12 +533,14 @@ Set a specific space role user as the default for their space.
531
533
  **Signature:**
532
534
 
533
535
  ```typescript
534
- setSpaceDefault(id: string, options?: Core.RequestOptions): Core.APIPromise<void>
536
+ setSpaceDefault(id: String, params: SpaceRoleUsersParams, options?: Core.RequestOptions): Core.APIPromise<void>
535
537
  ```
536
538
 
537
539
  **Parameters:**
538
540
 
539
541
  - `id` _(string)_: The ID of the space role user to set as default.
542
+ - `params` _(SpaceRoleUsersParams)_: Parameters containing the space slug.
543
+ - `X-Space`: _(string)_: Space slug name.
540
544
  - `options` _(Core.RequestOptions)_: Additional request options.
541
545
 
542
546
  **Returns:** `Promise<void>`
@@ -544,7 +548,7 @@ setSpaceDefault(id: string, options?: Core.RequestOptions): Core.APIPromise<void
544
548
  **Example:**
545
549
 
546
550
  ```typescript
547
- await client.spaceRoleUsers.setSpaceDefault("3fa85f64-5717-4562-b3fc ...");
551
+ await client.spaceRoleUsers.setSpaceDefault('3fa85f64-5717-4562-b3fc ...');
548
552
  console.log('Space role user has been set as default.');
549
553
  ```
550
554
 
@@ -558,15 +562,15 @@ Delete a specific space role user by their ID.
558
562
  **Signature:**
559
563
 
560
564
  ```typescript
561
- delete(id: number, params: SpaceRoleUserDeleteParams, options?: Core.RequestOptions): Core.APIPromise<void>
565
+ delete(id: number, params: SpaceRoleUsersParams, options?: Core.RequestOptions): Core.APIPromise<void>
562
566
  ```
563
567
 
564
568
  **Parameters:**
565
569
 
566
- - `id` _(number)_: The ID of the space role user to delete.
567
- - `params` _(SpaceRoleUserDeleteParams)_: Parameters containing the space slug.
568
- - `X-Space`: _(string)_: Space slug name.
569
- - `options` _(Core.RequestOptions)_: Additional request options.
570
+ - `id` _(number)_: The ID of the space role user to delete.
571
+ - `params` _(SpaceRoleUsersParams)_: Parameters containing the space slug.
572
+ - `X-Space`: _(string)_: Space slug name.
573
+ - `options` _(Core.RequestOptions)_: Additional request options.
570
574
 
571
575
  **Returns:** `Promise<void>`
572
576
 
@@ -601,7 +605,7 @@ retrieve(options?: Core.RequestOptions): Core.APIPromise<OAuthCredentials>
601
605
 
602
606
  **Parameters:**
603
607
 
604
- - `options` _(Core.RequestOptions)_: Additional request options.
608
+ - `options` _(Core.RequestOptions)_: Additional request options.
605
609
 
606
610
  **Returns:** `Promise<OAuthCredentials>`
607
611
 
@@ -637,11 +641,11 @@ create(params: SpaceRoleCreateParams, options?: Core.RequestOptions): Core.APIPr
637
641
 
638
642
  **Parameters:**
639
643
 
640
- - `params` _(SpaceRoleCreateParams)_: Parameters for creating a new space role.
641
- - `name`: _(string)_: The name of the space role.
642
- - `policies`: _(Array<number>)_: An array of policy IDs associated with the space role.
643
- - `X-Space`: _(string)_: Header param for space slug name.
644
- - `options` _(Core.RequestOptions)_: Additional request options.
644
+ - `params` _(SpaceRoleCreateParams)_: Parameters for creating a new space role.
645
+ - `name`: _(string)_: The name of the space role.
646
+ - `policies`: _(Array<number>)_: An array of policy IDs associated with the space role.
647
+ - `X-Space`: _(string)_: Header param for space slug name.
648
+ - `options` _(Core.RequestOptions)_: Additional request options.
645
649
 
646
650
  **Returns:** `Promise<SpaceRole>`
647
651
 
@@ -665,15 +669,15 @@ Retrieve a specific space role by its ID.
665
669
  **Signature:**
666
670
 
667
671
  ```typescript
668
- retrieve(id: number, params: SpaceRoleRetrieveParams, options?: Core.RequestOptions): Core.APIPromise<SpaceRole>
672
+ retrieve(id: number, params: SpaceRolesParams, options?: Core.RequestOptions): Core.APIPromise<SpaceRole>
669
673
  ```
670
674
 
671
675
  **Parameters:**
672
676
 
673
- - `id` _(number)_: The ID of the space role to retrieve.
674
- - `params` _(SpaceRoleRetrieveParams)_: Parameters containing the space slug.
675
- - `X-Space`: _(string)_: Space slug name.
676
- - `options` _(Core.RequestOptions)_: Additional request options.
677
+ - `id` _(number)_: The ID of the space role to retrieve.
678
+ - `params` _(SpaceRolesParams)_: Parameters containing the space slug.
679
+ - `X-Space`: _(string)_: Space slug name.
680
+ - `options` _(Core.RequestOptions)_: Additional request options.
677
681
 
678
682
  **Returns:** `Promise<SpaceRole>`
679
683
 
@@ -698,12 +702,12 @@ update(id: number, params: SpaceRoleUpdateParams, options?: Core.RequestOptions)
698
702
 
699
703
  **Parameters:**
700
704
 
701
- - `id` _(number)_: The ID of the space role to update.
702
- - `params` _(SpaceRoleUpdateParams)_: Parameters for updating the space role.
703
- - `name`: _(string)_: The new name of the space role.
704
- - `policies`: _(Array<number>)_: An updated array of policy IDs associated with the space role.
705
- - `X-Space`: _(string)_: Header param for space slug name.
706
- - `options` _(Core.RequestOptions)_: Additional request options.
705
+ - `id` _(number)_: The ID of the space role to update.
706
+ - `params` _(SpaceRoleUpdateParams)_: Parameters for updating the space role.
707
+ - `name`: _(string)_: The new name of the space role.
708
+ - `policies`: _(Array<number>)_: An updated array of policy IDs associated with the space role.
709
+ - `X-Space`: _(string)_: Header param for space slug name.
710
+ - `options` _(Core.RequestOptions)_: Additional request options.
707
711
 
708
712
  **Returns:** `Promise<SpaceRole>`
709
713
 
@@ -727,21 +731,21 @@ List all space roles or filter them based on query parameters.
727
731
  **Signature:**
728
732
 
729
733
  ```typescript
730
- list(params: SpaceRoleListParams, options?: Core.RequestOptions): Core.APIPromise<SpaceRoleListResponse>
734
+ list(spaceName: string, params: ListParamsResponse, options?: Core.RequestOptions): Core.APIPromise<SpaceRoleListResponse>
731
735
  ```
732
736
 
733
737
  **Parameters:**
734
738
 
735
- - `params` _(SpaceRoleListParams)_: Parameters containing the space slug and any additional filters.
736
- - `X-Space`: _(string)_: Header param for space slug name.
737
- - `options` _(Core.RequestOptions)_: Additional request options.
739
+ - `spaceName`: _(string)_: Header param for space slug name.
740
+ - `params` _(ListParamsResponse)_: Parameters containing the additional filters.
741
+ - `options` _(Core.RequestOptions)_: Additional request options.
738
742
 
739
743
  **Returns:** `Promise<SpaceRoleListResponse>`
740
744
 
741
745
  **Example:**
742
746
 
743
747
  ```typescript
744
- const spaceRoles = await client.spaceRoles.list({ 'X-Space': 'example-space', page: 1, limit: 10 });
748
+ const spaceRoles = await client.spaceRoles.list('example-space', { page: 1, limit: 10 });
745
749
  ```
746
750
 
747
751
  </details>
@@ -759,10 +763,10 @@ delete(id: number, params: SpaceRoleDeleteParams, options?: Core.RequestOptions)
759
763
 
760
764
  **Parameters:**
761
765
 
762
- - `id` _(number)_: The ID of the space role to delete.
763
- - `params` _(SpaceRoleDeleteParams)_: Parameters containing the space slug.
764
- - `X-Space`: _(string)_: Space slug name.
765
- - `options` _(Core.RequestOptions)_: Additional request options.
766
+ - `id` _(number)_: The ID of the space role to delete.
767
+ - `params` _(SpaceRoleDeleteParams)_: Parameters containing the space slug.
768
+ - `X-Space`: _(string)_: Space slug name.
769
+ - `options` _(Core.RequestOptions)_: Additional request options.
766
770
 
767
771
  **Returns:** `Promise<void>`
768
772
 
@@ -797,12 +801,12 @@ create(body: SpaceCreateParams, options?: Core.RequestOptions): Core.APIPromise<
797
801
 
798
802
  **Parameters:**
799
803
 
800
- - `body` _(SpaceCreateParams)_: Parameters for creating a new space.
801
- - `logo`: _(string)_: URL of the space logo.
802
- - `name`: _(string)_: The name of the space.
803
- - `slug_name`: _(string)_: Slug name for the space.
804
- - `is_active` _(boolean)_: (Optional) Whether the space is active.
805
- - `options` _(Core.RequestOptions)_: Additional request options.
804
+ - `body` _(SpaceCreateParams)_: Parameters for creating a new space.
805
+ - `logo`: _(string)_: URL of the space logo.
806
+ - `name`: _(string)_: The name of the space.
807
+ - `slug_name`: _(string)_: Slug name for the space.
808
+ - `is_active` _(boolean)_: (Optional) Whether the space is active.
809
+ - `options` _(Core.RequestOptions)_: Additional request options.
806
810
 
807
811
  **Returns:** `Promise<Space>`
808
812
 
@@ -832,13 +836,13 @@ update(params: SpaceUpdateParams, options?: Core.RequestOptions): Core.APIPromis
832
836
 
833
837
  **Parameters:**
834
838
 
835
- - `params` _(SpaceUpdateParams)_: Parameters for updating the space.
836
- - `logo`: _(string)_: URL of the new space logo.
837
- - `name`: _(string)_: The new name of the space.
838
- - `slug_name`: _(string)_: The new slug name for the space.
839
- - `X-Space`: _(string)_: Header param for space slug name.
840
- - `is_active` _(boolean)_: (Optional) Whether the space is active.
841
- - `options` _(Core.RequestOptions)_: Additional request options.
839
+ - `params` _(SpaceUpdateParams)_: Parameters for updating the space.
840
+ - `logo`: _(string)_: URL of the new space logo.
841
+ - `name`: _(string)_: The new name of the space.
842
+ - `slug_name`: _(string)_: The new slug name for the space.
843
+ - `X-Space`: _(string)_: Header param for space slug name.
844
+ - `is_active` _(boolean)_: (Optional) Whether the space is active.
845
+ - `options` _(Core.RequestOptions)_: Additional request options.
842
846
 
843
847
  **Returns:** `Promise<Space>`
844
848
 
@@ -869,9 +873,9 @@ list(params?: SpaceListParams, options?: Core.RequestOptions): Core.APIPromise<S
869
873
 
870
874
  **Parameters:**
871
875
 
872
- - `params` _(SpaceListParams)_: (Optional) Parameters containing the space slug and any additional filters.
873
- - `X-Space`: _(string)_: Header param for space slug name (optional).
874
- - `options` _(Core.RequestOptions)_: Additional request options.
876
+ - `params` _(SpaceListParams)_: (Optional) Parameters containing the space slug and any additional filters.
877
+ - `X-Space`: _(string)_: Header param for space slug name (optional).
878
+ - `options` _(Core.RequestOptions)_: Additional request options.
875
879
 
876
880
  **Returns:** `Promise<SpaceListResponse>`
877
881
 
@@ -891,14 +895,14 @@ Delete a specific space.
891
895
  **Signature:**
892
896
 
893
897
  ```typescript
894
- delete(params: SpaceDeleteParams, options?: Core.RequestOptions): Core.APIPromise<void>
898
+ delete(params: SpaceParams, options?: Core.RequestOptions): Core.APIPromise<void>
895
899
  ```
896
900
 
897
901
  **Parameters:**
898
902
 
899
- - `params` _(SpaceDeleteParams)_: Parameters containing the space slug.
900
- - `X-Space`: _(string)_: Space slug name.
901
- - `options` _(Core.RequestOptions)_: Additional request options.
903
+ - `params` _(SpaceParams)_: Parameters containing the space slug.
904
+ - `X-Space`: _(string)_: Space slug name.
905
+ - `options` _(Core.RequestOptions)_: Additional request options.
902
906
 
903
907
  **Returns:** `Promise<void>`
904
908
 
@@ -918,33 +922,35 @@ Send an invitation to users to join a space.
918
922
  **Signature:**
919
923
 
920
924
  ```typescript
921
- invitation(body: OAuthInvitation, options?: Core.RequestOptions): Core.APIPromise<OAuthInvitation>
925
+ invitation(params: OAuthInvitationParams, options?: Core.RequestOptions): Core.APIPromise<OAuthInvitationParams>
922
926
  ```
923
927
 
924
928
  **Parameters:**
925
929
 
926
- - `body` _(OAuthInvitation)_: Contains a list of receivers with emails and role IDs.
930
+ - `params` _(OAuthInvitationParams)_: Contains a list of receivers with emails and role IDs.
927
931
  - `receiver_list`: _(Receiver[])_: A list of invitation targets.
928
932
  - `email` _(string)_: Email address of the user to invite.
929
933
  - `space_role_id` _(string)_: Role ID assigned to the user in the space.
934
+ - `X-Space`: _(string)_: The space slug name.
930
935
  - `options` _(Core.RequestOptions)_: Additional request options.
931
936
 
932
- **Returns:** `Promise<OAuthInvitation>`
937
+ **Returns:** `Promise<OAuthInvitationParams>`
933
938
 
934
939
  **Example:**
935
940
 
936
941
  ```typescript
937
942
  const invitationResponse = await client.spaces.invitation({
938
- receiver_list: [
939
- {
940
- email: 'user1@example.com',
941
- space_role_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6',
942
- },
943
- {
944
- email: 'user2@example.com',
945
- space_role_id: '3fa85f64-5717-4562-b3fc-2c963f66afb3',
946
- },
947
- ],
943
+ receiver_list: [
944
+ {
945
+ email: 'user1@example.com',
946
+ space_role_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6',
947
+ },
948
+ {
949
+ email: 'user2@example.com',
950
+ space_role_id: '3fa85f64-5717-4562-b3fc-2c963f66afb3',
951
+ },
952
+ ],
953
+ 'X-Space': 'your-space-slug',
948
954
  });
949
955
  ```
950
956
 
@@ -972,20 +978,20 @@ Where `JoinSpaceResponse` is:
972
978
 
973
979
  ```typescript
974
980
  export interface JoinSpaceResponse {
975
- result?: string;
976
- error?: string;
981
+ result?: string;
982
+ error?: string;
977
983
  }
978
984
  ```
979
985
 
980
986
  **Example:**
981
987
 
982
988
  ```typescript
983
- const joinResponse = await client.spaces.joinSpace("eyJ0b2tlbiI6ICJ4eXo0NTYiIH0...");
989
+ const joinResponse = await client.spaces.joinSpace('eyJ0b2tlbiI6ICJ4eXo0NTYiIH0...');
984
990
 
985
991
  if (joinResponse.error) {
986
- console.error("Failed to join space:", joinResponse.error);
992
+ console.error('Failed to join space:', joinResponse.error);
987
993
  } else {
988
- console.log("Joined space successfully!", joinResponse.result);
994
+ console.log('Joined space successfully!', joinResponse.result);
989
995
  }
990
996
  ```
991
997
 
@@ -1014,11 +1020,11 @@ async authorize(body: OAuth2AuthorizeParams, options?: Core.RequestOptions): Pro
1014
1020
 
1015
1021
  **Parameters:**
1016
1022
 
1017
- - `body` _(OAuth2AuthorizeParams)_: Parameters required for authorization.
1018
- - `client_id`: _(string)_: The client ID of the application.
1019
- - `redirect_uri`: _(string)_: The URI to redirect to after authorization.
1020
- - `scopes`: _(Array<'organization'>)_: Scopes for the authorization request.
1021
- - `options` _(Core.RequestOptions)_: (Optional) Additional request options.
1023
+ - `body` _(OAuth2AuthorizeParams)_: Parameters required for authorization.
1024
+ - `client_id`: _(string)_: The client ID of the application.
1025
+ - `redirect_uri`: _(string)_: The URI to redirect to after authorization.
1026
+ - `scopes`: _(Array<'organization'>)_: Scopes for the authorization request.
1027
+ - `options` _(Core.RequestOptions)_: (Optional) Additional request options.
1022
1028
 
1023
1029
  **Returns:** `Promise<OAuth2Authorize>`
1024
1030
 
@@ -1048,13 +1054,13 @@ token(body: OAuth2Token, options?: Core.RequestOptions): Core.APIPromise<OAuth2T
1048
1054
 
1049
1055
  **Parameters:**
1050
1056
 
1051
- - `body` _(OAuth2Token)_: Parameters required to obtain an access token.
1052
- - `client_id`: _(string)_: The client ID of the application.
1053
- - `client_secret`: _(string)_: The client secret of the application.
1054
- - `code`: _(string)_: The authorization code received from the authorization server.
1055
- - `code_verifier`: _(string)_: The code verifier used in the authorization request.
1056
- - `scopes`: _(Array<'organization'>)_: (Optional) Scopes for the token request.
1057
- - `id_token`: _(string)_: (Optional) ID token if available.
1057
+ - `body` _(OAuth2Token)_: Parameters required to obtain an access token.
1058
+ - `client_id`: _(string)_: The client ID of the application.
1059
+ - `client_secret`: _(string)_: The client secret of the application.
1060
+ - `code`: _(string)_: The authorization code received from the authorization server.
1061
+ - `code_verifier`: _(string)_: The code verifier used in the authorization request.
1062
+ - `scopes`: _(Array<'organization'>)_: (Optional) Scopes for the token request.
1063
+ - `id_token`: _(string)_: (Optional) ID token if available.
1058
1064
 
1059
1065
  **Returns:** `Promise<OAuth2Token>`
1060
1066
 
@@ -1095,9 +1101,9 @@ create(params: DashboardCreateParams, options?: Core.RequestOptions): Core.APIPr
1095
1101
 
1096
1102
  **Parameters:**
1097
1103
 
1098
- - `params` _(DashboardCreateParams)_: Parameters required for creating a dashboard.
1099
- - `name`: _(string)_: The name of the dashboard.
1100
- - `X-Space`: _(string)_: The space slug name.
1104
+ - `params` _(DashboardCreateParams)_: Parameters required for creating a dashboard.
1105
+ - `name`: _(string)_: The name of the dashboard.
1106
+ - `X-Space`: _(string)_: The space slug name.
1101
1107
 
1102
1108
  **Returns:** `Promise<Dashboard>`
1103
1109
 
@@ -1126,9 +1132,9 @@ retrieve(id: number, params: DashboardRetrieveParams, options?: Core.RequestOpti
1126
1132
 
1127
1133
  **Parameters:**
1128
1134
 
1129
- - `id` _(number)_: The ID of the dashboard to retrieve.
1130
- - `params` _(DashboardRetrieveParams)_: Parameters required for retrieving a dashboard.
1131
- - `X-Space`: _(string)_: The space slug name.
1135
+ - `id` _(number)_: The ID of the dashboard to retrieve.
1136
+ - `params` _(DashboardRetrieveParams)_: Parameters required for retrieving a dashboard.
1137
+ - `X-Space`: _(string)_: The space slug name.
1132
1138
 
1133
1139
  **Returns:** `Promise<Dashboard>`
1134
1140
 
@@ -1154,10 +1160,10 @@ update(id: number, params: DashboardUpdateParams, options?: Core.RequestOptions)
1154
1160
 
1155
1161
  **Parameters:**
1156
1162
 
1157
- - `id` _(number)_: The ID of the dashboard to update.
1158
- - `params` _(DashboardUpdateParams)_: Parameters required for updating a dashboard.
1159
- - `name`: _(string)_: The new name of the dashboard.
1160
- - `X-Space`: _(string)_: The space slug name.
1163
+ - `id` _(number)_: The ID of the dashboard to update.
1164
+ - `params` _(DashboardUpdateParams)_: Parameters required for updating a dashboard.
1165
+ - `name`: _(string)_: The new name of the dashboard.
1166
+ - `X-Space`: _(string)_: The space slug name.
1161
1167
 
1162
1168
  **Returns:** `Promise<Dashboard>`
1163
1169
 
@@ -1186,8 +1192,8 @@ list(params: DashboardListParams, options?: Core.RequestOptions): Core.APIPromis
1186
1192
 
1187
1193
  **Parameters:**
1188
1194
 
1189
- - `params` _(DashboardListParams)_: Parameters for listing dashboards.
1190
- - `X-Space`: _(string)_: The space slug name.
1195
+ - `params` _(DashboardListParams)_: Parameters for listing dashboards.
1196
+ - `X-Space`: _(string)_: The space slug name.
1191
1197
 
1192
1198
  **Returns:** `Promise<DashboardListResponse>`
1193
1199
 
@@ -1212,9 +1218,9 @@ delete(id: number, params: DashboardDeleteParams, options?: Core.RequestOptions)
1212
1218
 
1213
1219
  **Parameters:**
1214
1220
 
1215
- - `id` _(number)_: The ID of the dashboard to delete.
1216
- - `params` _(DashboardDeleteParams)_: Parameters required for deleting a dashboard.
1217
- - `X-Space`: _(string)_: The space slug name.
1221
+ - `id` _(number)_: The ID of the dashboard to delete.
1222
+ - `params` _(DashboardDeleteParams)_: Parameters required for deleting a dashboard.
1223
+ - `X-Space`: _(string)_: The space slug name.
1218
1224
 
1219
1225
  **Returns:** `Promise<void>`
1220
1226
 
@@ -1239,10 +1245,10 @@ createWidget(dashboardId: string, params: WidgetCreateParams, options?: Core.Req
1239
1245
 
1240
1246
  **Parameters:**
1241
1247
 
1242
- - `dashboardId` _(string)_: The ID of the dashboard to create the widget in.
1243
- - `params` _(WidgetCreateParams)_: Parameters required for creating a widget.
1244
- - `configuration`: _(any)_: Configuration settings for the widget.
1245
- - `X-Space`: _(string)_: The space slug name.
1248
+ - `dashboardId` _(string)_: The ID of the dashboard to create the widget in.
1249
+ - `params` _(WidgetCreateParams)_: Parameters required for creating a widget.
1250
+ - `configuration`: _(any)_: Configuration settings for the widget.
1251
+ - `X-Space`: _(string)_: The space slug name.
1246
1252
 
1247
1253
  **Returns:** `Promise<Widget>`
1248
1254
 
@@ -1271,10 +1277,10 @@ retrieveWidget(dashboardId: string, id: number, params: WidgetRetrieveParams, op
1271
1277
 
1272
1278
  **Parameters:**
1273
1279
 
1274
- - `dashboardId` _(string)_: The ID of the dashboard containing the widget.
1275
- - `id` _(number)_: The ID of the widget to retrieve.
1276
- - `params` _(WidgetRetrieveParams)_: Parameters required for retrieving a widget.
1277
- - `X-Space`: _(string)_: The space slug name.
1280
+ - `dashboardId` _(string)_: The ID of the dashboard containing the widget.
1281
+ - `id` _(number)_: The ID of the widget to retrieve.
1282
+ - `params` _(WidgetRetrieveParams)_: Parameters required for retrieving a widget.
1283
+ - `X-Space`: _(string)_: The space slug name.
1278
1284
 
1279
1285
  **Returns:** `Promise<Widget>`
1280
1286
 
@@ -1299,11 +1305,11 @@ updateWidget(dashboardId: string, id: number, params: WidgetUpdateParams, option
1299
1305
 
1300
1306
  **Parameters:**
1301
1307
 
1302
- - `dashboardId` _(string)_: The ID of the dashboard containing the widget.
1303
- - `id` _(number)_: The ID of the widget to update.
1304
- - `params` _(WidgetUpdateParams)_: Parameters required for updating a widget.
1305
- - `configuration`: _(any)_: New configuration settings for the widget.
1306
- - `X-Space`: _(string)_: The space slug name.
1308
+ - `dashboardId` _(string)_: The ID of the dashboard containing the widget.
1309
+ - `id` _(number)_: The ID of the widget to update.
1310
+ - `params` _(WidgetUpdateParams)_: Parameters required for updating a widget.
1311
+ - `configuration`: _(any)_: New configuration settings for the widget.
1312
+ - `X-Space`: _(string)_: The space slug name.
1307
1313
 
1308
1314
  **Returns:** `Promise<Widget>`
1309
1315
 
@@ -1332,10 +1338,10 @@ listWidgets(dashboardId: string, params: WidgetListParams, options?: Core.Reques
1332
1338
 
1333
1339
  **Parameters:**
1334
1340
 
1335
- - `dashboardId` _(string)_: The ID of the dashboard to list widgets from.
1336
- - `params` _(WidgetListParams)_: Parameters for listing widgets.
1337
- - `X-Space`: _(string)_: The space slug name.
1338
- - `ordering`: _(string)_: (Optional) Field to use when ordering the results.
1341
+ - `dashboardId` _(string)_: The ID of the dashboard to list widgets from.
1342
+ - `params` _(WidgetListParams)_: Parameters for listing widgets.
1343
+ - `X-Space`: _(string)_: The space slug name.
1344
+ - `ordering`: _(string)_: (Optional) Field to use when ordering the results.
1339
1345
 
1340
1346
  **Returns:** `Promise<WidgetListResponse>`
1341
1347
 
@@ -1360,10 +1366,10 @@ deleteWidget(dashboardId: string, id: number, params: WidgetDeleteParams, option
1360
1366
 
1361
1367
  **Parameters:**
1362
1368
 
1363
- - `dashboardId` _(string)_: The ID of the dashboard containing the widget.
1364
- - `id` _(number)_: The ID of the widget to delete.
1365
- - `params` _(WidgetDeleteParams)_: Parameters required for deleting a widget.
1366
- - `X-Space`: _(string)_: The space slug name.
1369
+ - `dashboardId` _(string)_: The ID of the dashboard containing the widget.
1370
+ - `id` _(number)_: The ID of the widget to delete.
1371
+ - `params` _(WidgetDeleteParams)_: Parameters required for deleting a widget.
1372
+ - `X-Space`: _(string)_: The space slug name.
1367
1373
 
1368
1374
  **Returns:** `Promise<void>`
1369
1375
 
@@ -1396,9 +1402,9 @@ retrieveDaily(params: DailyRetrieveParams, options?: Core.RequestOptions): Core.
1396
1402
 
1397
1403
  **Parameters:**
1398
1404
 
1399
- - `params` _(DailyRetrieveParams)_: Parameters for retrieving daily device states.
1400
- - `X-Space`: _(string)_: Space slug name.
1401
- - Other query parameters specific to daily retrieval.
1405
+ - `params` _(DailyRetrieveParams)_: Parameters for retrieving daily device states.
1406
+ - `X-Space`: _(string)_: Space slug name.
1407
+ - Other query parameters specific to daily retrieval.
1402
1408
 
1403
1409
  **Returns:** `Promise<DailyRetrieveResponse>`
1404
1410
 
@@ -1427,9 +1433,9 @@ retrieveHourly(params: HourlyRetrieveParams, options?: Core.RequestOptions): Cor
1427
1433
 
1428
1434
  **Parameters:**
1429
1435
 
1430
- - `params` _(HourlyRetrieveParams)_: Parameters for retrieving hourly device states.
1431
- - `X-Space`: _(string)_: Space slug name.
1432
- - Other query parameters specific to hourly retrieval.
1436
+ - `params` _(HourlyRetrieveParams)_: Parameters for retrieving hourly device states.
1437
+ - `X-Space`: _(string)_: Space slug name.
1438
+ - Other query parameters specific to hourly retrieval.
1433
1439
 
1434
1440
  **Returns:** `Promise<HourlyRetrieveResponse>`
1435
1441
 
@@ -1458,9 +1464,9 @@ retrieveMinutely(params: MinutelyRetrieveParams, options?: Core.RequestOptions):
1458
1464
 
1459
1465
  **Parameters:**
1460
1466
 
1461
- - `params` _(MinutelyRetrieveParams)_: Parameters for retrieving minutely device states.
1462
- - `X-Space`: _(string)_: Space slug name.
1463
- - Other query parameters specific to minutely retrieval.
1467
+ - `params` _(MinutelyRetrieveParams)_: Parameters for retrieving minutely device states.
1468
+ - `X-Space`: _(string)_: Space slug name.
1469
+ - Other query parameters specific to minutely retrieval.
1464
1470
 
1465
1471
  **Returns:** `Promise<MinutelyRetrieveResponse>`
1466
1472
 
@@ -1489,9 +1495,9 @@ retrieveMonthly(params: MonthlyRetrieveParams, options?: Core.RequestOptions): C
1489
1495
 
1490
1496
  **Parameters:**
1491
1497
 
1492
- - `params` _(MonthlyRetrieveParams)_: Parameters for retrieving monthly device states.
1493
- - `X-Space`: _(string)_: Space slug name.
1494
- - Other query parameters specific to monthly retrieval.
1498
+ - `params` _(MonthlyRetrieveParams)_: Parameters for retrieving monthly device states.
1499
+ - `X-Space`: _(string)_: Space slug name.
1500
+ - Other query parameters specific to monthly retrieval.
1495
1501
 
1496
1502
  **Returns:** `Promise<MonthlyRetrieveResponse>`
1497
1503
 
@@ -1530,7 +1536,7 @@ getMe(options?: Core.RequestOptions): Core.APIPromise<Profile>
1530
1536
 
1531
1537
  **Parameters:**
1532
1538
 
1533
- - `options` _(Core.RequestOptions)_: Additional request options.
1539
+ - `options` _(Core.RequestOptions)_: Additional request options.
1534
1540
 
1535
1541
  **Returns:** `Promise<Profile>`
1536
1542
 
@@ -1556,15 +1562,15 @@ updateMe(body: Profile, options?: Core.RequestOptions): Core.APIPromise<Profile>
1556
1562
 
1557
1563
  **Parameters:**
1558
1564
 
1559
- - `body` _(Profile)_: Object containing updated user profile details.
1560
- - `first_name` _(string)_: User's first name.
1561
- - `last_name` _(string)_: User's last name.
1562
- - `email` _(string)_: User's email address.
1563
- - `location` _(string)_: User's location.
1564
- - `avatar` _(string)_: URL of the user's avatar.
1565
- - `company_name` _(string)_: User's company name.
1566
- - `title` _(string)_: User's title.
1567
- - `options` _(Core.RequestOptions)_: Additional request options.
1565
+ - `body` _(Profile)_: Object containing updated user profile details.
1566
+ - `first_name` _(string)_: User's first name.
1567
+ - `last_name` _(string)_: User's last name.
1568
+ - `email` _(string)_: User's email address.
1569
+ - `location` _(string)_: User's location.
1570
+ - `avatar` _(string)_: URL of the user's avatar.
1571
+ - `company_name` _(string)_: User's company name.
1572
+ - `title` _(string)_: User's title.
1573
+ - `options` _(Core.RequestOptions)_: Additional request options.
1568
1574
 
1569
1575
  **Returns:** `Promise<Profile>`
1570
1576
 
@@ -1594,7 +1600,7 @@ deleteMe(options?: Core.RequestOptions): Core.APIPromise<void>
1594
1600
 
1595
1601
  **Parameters:**
1596
1602
 
1597
- - `options` _(Core.RequestOptions)_: Additional request options.
1603
+ - `options` _(Core.RequestOptions)_: Additional request options.
1598
1604
 
1599
1605
  **Returns:** `Promise<void>`
1600
1606
 
@@ -1630,7 +1636,7 @@ get(options?: Core.RequestOptions): Core.APIPromise<PresignedUrlResponse>
1630
1636
 
1631
1637
  **Parameters:**
1632
1638
 
1633
- - `options` _(Core.RequestOptions)_: Additional request options.
1639
+ - `options` _(Core.RequestOptions)_: Additional request options.
1634
1640
 
1635
1641
  **Returns:** `Promise<PresignedUrlResponse>`
1636
1642
 
@@ -1642,4 +1648,4 @@ console.log(response.presigned_url);
1642
1648
  console.log(response.file_name);
1643
1649
  ```
1644
1650
 
1645
- </details>
1651
+ </details>