@fusebase/fusebase-gate-sdk 2.2.15-sdk.0 → 2.2.15-sdk.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.
|
@@ -11,12 +11,12 @@ export declare class AppApisApi {
|
|
|
11
11
|
constructor(client: Client);
|
|
12
12
|
/**
|
|
13
13
|
* Describe app API operation
|
|
14
|
-
* Returns one published app API operation for the requested app
|
|
14
|
+
* Returns one published app API operation for the requested app and operation id.
|
|
15
15
|
*/
|
|
16
16
|
getAppApiOperation(params: {
|
|
17
17
|
path: {
|
|
18
18
|
orgId: orgIdInPathRequired;
|
|
19
|
-
|
|
19
|
+
appId: string;
|
|
20
20
|
operationId: string;
|
|
21
21
|
};
|
|
22
22
|
headers?: Record<string, string>;
|
|
@@ -30,8 +30,8 @@ export declare class AppApisApi {
|
|
|
30
30
|
orgId: orgIdInPathRequired;
|
|
31
31
|
};
|
|
32
32
|
query?: {
|
|
33
|
+
productId?: string;
|
|
33
34
|
appId?: string;
|
|
34
|
-
appFeatureId?: string;
|
|
35
35
|
visibility?: string;
|
|
36
36
|
limit?: number;
|
|
37
37
|
};
|
package/dist/apis/AppApisApi.js
CHANGED
|
@@ -13,12 +13,12 @@ class AppApisApi {
|
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
15
|
* Describe app API operation
|
|
16
|
-
* Returns one published app API operation for the requested app
|
|
16
|
+
* Returns one published app API operation for the requested app and operation id.
|
|
17
17
|
*/
|
|
18
18
|
async getAppApiOperation(params) {
|
|
19
19
|
return this.client.request({
|
|
20
20
|
method: "GET",
|
|
21
|
-
path: "/:orgId/
|
|
21
|
+
path: "/:orgId/apps/:appId/app-apis/:operationId",
|
|
22
22
|
pathParams: params.path,
|
|
23
23
|
headers: params.headers,
|
|
24
24
|
opId: "getAppApiOperation",
|
package/package.json
CHANGED
package/release-notes/latest.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Release Notes 2.2.15-sdk.
|
|
1
|
+
# Release Notes 2.2.15-sdk.1
|
|
2
2
|
|
|
3
3
|
- Current ref: `HEAD`
|
|
4
|
-
- Previous tag: `v2.2.15-sdk.
|
|
5
|
-
- Generated at: 2026-05-
|
|
4
|
+
- Previous tag: `v2.2.15-sdk.1`
|
|
5
|
+
- Generated at: 2026-05-13T08:53:34.603Z
|
|
6
6
|
|
|
7
7
|
## Included Drafts
|
|
8
8
|
|