@stack-spot/portal-network 1.0.0-dev.1773912785190 → 1.0.0-dev.1774041557486
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/api/account.d.ts +294 -677
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +274 -466
- package/dist/api/account.js.map +1 -1
- package/dist/api/ai.d.ts +2 -1
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +4 -2
- package/dist/api/ai.js.map +1 -1
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +180 -180
- package/dist/client/account.js.map +1 -1
- package/dist/client/ai.d.ts +1 -0
- package/dist/client/ai.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/account.ts +321 -1006
- package/src/api/ai.ts +7 -4
- package/src/client/account.ts +353 -329
package/src/api/ai.ts
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* DO NOT MODIFY - This file has been generated using oazapfts.
|
|
5
5
|
* See https://www.npmjs.com/package/oazapfts
|
|
6
6
|
*/
|
|
7
|
-
import * as Oazapfts from "@oazapfts/runtime"
|
|
8
|
-
import * as QS from "@oazapfts/runtime/query"
|
|
7
|
+
import * as Oazapfts from "@oazapfts/runtime";
|
|
8
|
+
import * as QS from "@oazapfts/runtime/query";
|
|
9
9
|
export const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders> = {
|
|
10
10
|
headers: {},
|
|
11
11
|
baseUrl: "/",
|
|
@@ -2975,8 +2975,9 @@ export function updateVisibilityV1QuickCommandsSlugVisibilityPatch({ slug, visib
|
|
|
2975
2975
|
/**
|
|
2976
2976
|
* Publish
|
|
2977
2977
|
*/
|
|
2978
|
-
export function publishV1QuickCommandsSlugPublishPost({ slug, authorization, xAccountId, xMemberId, xUsername, quickCommandPublishRequest }: {
|
|
2978
|
+
export function publishV1QuickCommandsSlugPublishPost({ slug, isResourceAccessManager, authorization, xAccountId, xMemberId, xUsername, quickCommandPublishRequest }: {
|
|
2979
2979
|
slug: string;
|
|
2980
|
+
isResourceAccessManager?: boolean | null;
|
|
2980
2981
|
authorization: string;
|
|
2981
2982
|
xAccountId?: string | null;
|
|
2982
2983
|
xMemberId?: string | null;
|
|
@@ -2990,7 +2991,9 @@ export function publishV1QuickCommandsSlugPublishPost({ slug, authorization, xAc
|
|
|
2990
2991
|
} | {
|
|
2991
2992
|
status: 422;
|
|
2992
2993
|
data: HttpValidationError;
|
|
2993
|
-
}>(`/v1/quick-commands/${encodeURIComponent(slug)}/publish
|
|
2994
|
+
}>(`/v1/quick-commands/${encodeURIComponent(slug)}/publish${QS.query(QS.explode({
|
|
2995
|
+
is_resource_access_manager: isResourceAccessManager
|
|
2996
|
+
}))}`, oazapfts.json({
|
|
2994
2997
|
...opts,
|
|
2995
2998
|
method: "POST",
|
|
2996
2999
|
body: quickCommandPublishRequest,
|