@fusebase/fusebase-gate-sdk 2.3.28-sdk.3 → 2.3.28-sdk.6

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.
@@ -5,7 +5,7 @@
5
5
  * Domain: tokens
6
6
  */
7
7
  import type { Client } from "../runtime/transport";
8
- import type { CreateTokenRequestContract, CreateTokenResponseContract, limitInQueryOptional, pageInQueryOptional, RevokeTokenResponseContract, scopeIdInQueryRequired, scopeTypeOrgInQueryRequired, TokenListResponseContract, TokenResponseContract, tokenSourceInQueryOptional, UpdateTokenRequestContract } from "../types";
8
+ import type { CreateTokenRequestContract, CreateTokenResponseContract, includeExpiredInQueryOptional, limitInQueryOptional, pageInQueryOptional, RevokeTokenResponseContract, scopeIdInQueryRequired, scopeTypeOrgInQueryRequired, TokenListResponseContract, TokenResponseContract, tokenSourceInQueryOptional, UpdateTokenRequestContract } from "../types";
9
9
  export declare class TokensApi {
10
10
  private client;
11
11
  constructor(client: Client);
@@ -35,6 +35,7 @@ export declare class TokensApi {
35
35
  * Retrieve a paginated list of API tokens for the authenticated user.
36
36
  * Optionally filter by scope type and scope ID (both must be provided together).
37
37
  * Optionally filter by token_source: manual (user-created) or app (app-provisioned).
38
+ * Expired tokens are hidden by default; pass include_expired=true to include them.
38
39
  * Defaults to page=1 and limit=50 (max 100).
39
40
  *
40
41
  */
@@ -43,6 +44,7 @@ export declare class TokensApi {
43
44
  scope_type: scopeTypeOrgInQueryRequired;
44
45
  scope_id: scopeIdInQueryRequired;
45
46
  token_source?: tokenSourceInQueryOptional;
47
+ include_expired?: includeExpiredInQueryOptional;
46
48
  page?: pageInQueryOptional;
47
49
  limit?: limitInQueryOptional;
48
50
  };
@@ -47,6 +47,7 @@ class TokensApi {
47
47
  * Retrieve a paginated list of API tokens for the authenticated user.
48
48
  * Optionally filter by scope type and scope ID (both must be provided together).
49
49
  * Optionally filter by token_source: manual (user-created) or app (app-provisioned).
50
+ * Expired tokens are hidden by default; pass include_expired=true to include them.
50
51
  * Defaults to page=1 and limit=50 (max 100).
51
52
  *
52
53
  */
@@ -24,6 +24,6 @@ export type { AddPortalAppPageRequestContract, AddPortalAppPageResponseContract,
24
24
  export * from "./shared/common";
25
25
  export * from "./shared/enums";
26
26
  export type { GetHealth200ResponseContract } from "./shared/health";
27
- export type { aliasInQueryOptional, aliasInQueryRequired, cacheStrategyInQueryOptional, copyDataInQueryRequired, copyRelationsInQueryRequired, copyTablesInQueryRequired, copyViewsInQueryRequired, createDefaultRowsInQuery, dashboardIdInPathRequired, databaseIdInQueryRequired, includeRows, limitInQueryOptional, mappingInQueryRequiredContract, nameInQueryOptional, orgIdInPathRequired, pageInQueryOptional, relationId, rootEntitiesInQueryOptional, rootEntityInQueryOptional, scopeIdInQueryRequired, scopeTypeInQueryRequired, scopeTypeOrgInQueryRequired, sectionKeyInQueryOptional, sectionKeyInQueryRequired, sectionTypeInQueryOptional, sectionTypeInQueryRequired, sourceDashboardIdInQueryRequired, sourceIndexInQueryRequired, targetDashboardIdInQueryRequired, templateIdInPathRequired, tokenSourceInQueryOptional, viewIdInPathRequired, viewIdInQueryOptional, viewIdInQueryRequired } from "./shared/parameters";
27
+ export type { aliasInQueryOptional, aliasInQueryRequired, cacheStrategyInQueryOptional, copyDataInQueryRequired, copyRelationsInQueryRequired, copyTablesInQueryRequired, copyViewsInQueryRequired, createDefaultRowsInQuery, dashboardIdInPathRequired, databaseIdInQueryRequired, includeExpiredInQueryOptional, includeRows, limitInQueryOptional, mappingInQueryRequiredContract, nameInQueryOptional, orgIdInPathRequired, pageInQueryOptional, relationId, rootEntitiesInQueryOptional, rootEntityInQueryOptional, scopeIdInQueryRequired, scopeTypeInQueryRequired, scopeTypeOrgInQueryRequired, sectionKeyInQueryOptional, sectionKeyInQueryRequired, sectionTypeInQueryOptional, sectionTypeInQueryRequired, sourceDashboardIdInQueryRequired, sourceIndexInQueryRequired, targetDashboardIdInQueryRequired, templateIdInPathRequired, tokenSourceInQueryOptional, viewIdInPathRequired, viewIdInQueryOptional, viewIdInQueryRequired } from "./shared/parameters";
28
28
  export * from "./system/system";
29
29
  export * from "./token/token";
@@ -3,6 +3,7 @@ import type { RootEntityContract, ScopeTypeContract, ScopeTypeOrgContract } from
3
3
  export type scopeTypeOrgInQueryRequired = ScopeTypeOrgContract;
4
4
  export type scopeIdInQueryRequired = string;
5
5
  export type tokenSourceInQueryOptional = "manual" | "app";
6
+ export type includeExpiredInQueryOptional = boolean;
6
7
  export type copyViewsInQueryRequired = boolean;
7
8
  export type copyDataInQueryRequired = boolean;
8
9
  export type copyRelationsInQueryRequired = boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusebase/fusebase-gate-sdk",
3
- "version": "2.3.28-sdk.3",
3
+ "version": "2.3.28-sdk.6",
4
4
  "description": "TypeScript SDK for Fusebase Gate APIs - Generated from contract introspection",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -0,0 +1,9 @@
1
+ # Release Notes 2.3.28-sdk.6
2
+
3
+ - Current ref: `HEAD`
4
+ - Previous tag: `v2.3.28-sdk.6`
5
+ - Generated at: 2026-07-10T08:13:51.398Z
6
+
7
+ ## Included Drafts
8
+
9
+ - None
@@ -1,8 +1,8 @@
1
- # Release Notes 2.3.28-sdk.3
1
+ # Release Notes 2.3.28-sdk.6
2
2
 
3
3
  - Current ref: `HEAD`
4
- - Previous tag: `v2.3.28-sdk.3`
5
- - Generated at: 2026-07-09T11:27:39.832Z
4
+ - Previous tag: `v2.3.28-sdk.6`
5
+ - Generated at: 2026-07-10T08:13:51.398Z
6
6
 
7
7
  ## Included Drafts
8
8
 
@@ -1,9 +0,0 @@
1
- # Release Notes 2.3.28-sdk.3
2
-
3
- - Current ref: `HEAD`
4
- - Previous tag: `v2.3.28-sdk.3`
5
- - Generated at: 2026-07-09T11:27:39.832Z
6
-
7
- ## Included Drafts
8
-
9
- - None