@fusebase/fusebase-gate-sdk 2.3.5-sdk.3 → 2.3.5-sdk.5
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.
- package/dist/apis/AppEmbedTargetsApi.d.ts +23 -0
- package/dist/apis/AppEmbedTargetsApi.js +29 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/types/app-embed-targets/app-embed-targets.d.ts +16 -0
- package/dist/types/app-embed-targets/app-embed-targets.js +2 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/release-notes/2.3.5-sdk.5.md +9 -0
- package/release-notes/latest.md +3 -3
- package/release-notes/2.3.5-sdk.3.md +0 -9
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AppEmbedTargets API
|
|
3
|
+
*
|
|
4
|
+
* Generated from contract introspection
|
|
5
|
+
* Domain: app-embed-targets
|
|
6
|
+
*/
|
|
7
|
+
import type { Client } from "../runtime/transport";
|
|
8
|
+
import type { ListAppPortalEmbedsResponseContract, orgIdInPathRequired } from "../types";
|
|
9
|
+
export declare class AppEmbedTargetsApi {
|
|
10
|
+
private client;
|
|
11
|
+
constructor(client: Client);
|
|
12
|
+
/**
|
|
13
|
+
* List an app's portal embeds
|
|
14
|
+
* Returns the portal pages in the organization where the given app is embedded (as an app-feature brick). One entry per page, each with the portal name, page title, and a ready-to-use page URL. Org-scoped by design (per spec); workspace-level access enforcement is portal-service's responsibility. Requires portals.read access.
|
|
15
|
+
*/
|
|
16
|
+
listAppPortalEmbeds(params: {
|
|
17
|
+
path: {
|
|
18
|
+
orgId: orgIdInPathRequired;
|
|
19
|
+
appId: string;
|
|
20
|
+
};
|
|
21
|
+
headers?: Record<string, string>;
|
|
22
|
+
}): Promise<ListAppPortalEmbedsResponseContract>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* AppEmbedTargets API
|
|
4
|
+
*
|
|
5
|
+
* Generated from contract introspection
|
|
6
|
+
* Domain: app-embed-targets
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.AppEmbedTargetsApi = void 0;
|
|
10
|
+
class AppEmbedTargetsApi {
|
|
11
|
+
constructor(client) {
|
|
12
|
+
this.client = client;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* List an app's portal embeds
|
|
16
|
+
* Returns the portal pages in the organization where the given app is embedded (as an app-feature brick). One entry per page, each with the portal name, page title, and a ready-to-use page URL. Org-scoped by design (per spec); workspace-level access enforcement is portal-service's responsibility. Requires portals.read access.
|
|
17
|
+
*/
|
|
18
|
+
async listAppPortalEmbeds(params) {
|
|
19
|
+
return this.client.request({
|
|
20
|
+
method: "GET",
|
|
21
|
+
path: "/:orgId/apps/:appId/portal-embeds",
|
|
22
|
+
pathParams: params.path,
|
|
23
|
+
headers: params.headers,
|
|
24
|
+
opId: "listAppPortalEmbeds",
|
|
25
|
+
expectedContentType: "application/json",
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.AppEmbedTargetsApi = AppEmbedTargetsApi;
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from "./runtime";
|
|
|
7
7
|
export * from "./types";
|
|
8
8
|
export { AccessApi } from "./apis/AccessApi";
|
|
9
9
|
export { AppApisApi } from "./apis/AppApisApi";
|
|
10
|
+
export { AppEmbedTargetsApi } from "./apis/AppEmbedTargetsApi";
|
|
10
11
|
export { AppMagicLinksApi } from "./apis/AppMagicLinksApi";
|
|
11
12
|
export { BillingApi } from "./apis/BillingApi";
|
|
12
13
|
export { EmailsApi } from "./apis/EmailsApi";
|
package/dist/index.js
CHANGED
|
@@ -19,13 +19,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19
19
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.WorkspacesApi = exports.TokensApi = exports.SystemApi = exports.PortalsApi = exports.PortalFeatureContextApi = exports.OrgsApi = exports.OrgUsersApi = exports.OrgGroupsApi = exports.NotesApi = exports.McpManagerApi = exports.IsolatedStoresApi = exports.HealthApi = exports.FusebaseAuthApi = exports.FilesApi = exports.EmailsApi = exports.BillingApi = exports.AppMagicLinksApi = exports.AppApisApi = exports.AccessApi = void 0;
|
|
22
|
+
exports.WorkspacesApi = exports.TokensApi = exports.SystemApi = exports.PortalsApi = exports.PortalFeatureContextApi = exports.OrgsApi = exports.OrgUsersApi = exports.OrgGroupsApi = exports.NotesApi = exports.McpManagerApi = exports.IsolatedStoresApi = exports.HealthApi = exports.FusebaseAuthApi = exports.FilesApi = exports.EmailsApi = exports.BillingApi = exports.AppMagicLinksApi = exports.AppEmbedTargetsApi = exports.AppApisApi = exports.AccessApi = void 0;
|
|
23
23
|
__exportStar(require("./runtime"), exports);
|
|
24
24
|
__exportStar(require("./types"), exports);
|
|
25
25
|
var AccessApi_1 = require("./apis/AccessApi");
|
|
26
26
|
Object.defineProperty(exports, "AccessApi", { enumerable: true, get: function () { return AccessApi_1.AccessApi; } });
|
|
27
27
|
var AppApisApi_1 = require("./apis/AppApisApi");
|
|
28
28
|
Object.defineProperty(exports, "AppApisApi", { enumerable: true, get: function () { return AppApisApi_1.AppApisApi; } });
|
|
29
|
+
var AppEmbedTargetsApi_1 = require("./apis/AppEmbedTargetsApi");
|
|
30
|
+
Object.defineProperty(exports, "AppEmbedTargetsApi", { enumerable: true, get: function () { return AppEmbedTargetsApi_1.AppEmbedTargetsApi; } });
|
|
29
31
|
var AppMagicLinksApi_1 = require("./apis/AppMagicLinksApi");
|
|
30
32
|
Object.defineProperty(exports, "AppMagicLinksApi", { enumerable: true, get: function () { return AppMagicLinksApi_1.AppMagicLinksApi; } });
|
|
31
33
|
var BillingApi_1 = require("./apis/BillingApi");
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface AppPortalEmbedContract {
|
|
2
|
+
portal: {
|
|
3
|
+
globalId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
page: {
|
|
7
|
+
globalId: string;
|
|
8
|
+
title?: string;
|
|
9
|
+
};
|
|
10
|
+
/** Ready-to-use URL of the portal page where the app is embedded. */
|
|
11
|
+
url: string;
|
|
12
|
+
}
|
|
13
|
+
export interface ListAppPortalEmbedsResponseContract {
|
|
14
|
+
/** One entry per portal page where the app is embedded. */
|
|
15
|
+
portalEmbeds: AppPortalEmbedContract[];
|
|
16
|
+
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export type { AuthenticatedUserSummaryContract, MyOrgAccessResponseContract } from "./access/access";
|
|
8
8
|
export type { AppApiOperationContract, AppApiOperationListResponseContract, CallAppApiRequestContract, CallAppApiResponseContract, VerifyAppApiContractsRequestContract, VerifyAppApiContractsResponseContract, VerifyCaseResultContract } from "./app-api/app-api";
|
|
9
|
+
export type { AppPortalEmbedContract, ListAppPortalEmbedsResponseContract } from "./app-embed-targets/app-embed-targets";
|
|
9
10
|
export type { ActivateAppMagicLinkResponseContract, CreateAppMagicLinkRequestContract, CreateAppMagicLinkResponseContract, RequestAppMagicLinkRequestContract, RequestAppMagicLinkResponseContract } from "./app-magic-link/app-magic-link";
|
|
10
11
|
export * from "./billing/billing";
|
|
11
12
|
export type { OrgEmailSendRequestContract, OrgEmailSendResponseContract } from "./email/email";
|
package/package.json
CHANGED
package/release-notes/latest.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Release Notes 2.3.5-sdk.
|
|
1
|
+
# Release Notes 2.3.5-sdk.5
|
|
2
2
|
|
|
3
3
|
- Current ref: `HEAD`
|
|
4
|
-
- Previous tag: `v2.3.5-sdk.
|
|
5
|
-
- Generated at: 2026-06-
|
|
4
|
+
- Previous tag: `v2.3.5-sdk.5`
|
|
5
|
+
- Generated at: 2026-06-20T13:21:01.512Z
|
|
6
6
|
|
|
7
7
|
## Included Drafts
|
|
8
8
|
|