@hautechai/sdk 2.18.0 → 2.19.0
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/index.d.mts +81 -1
- package/dist/index.d.ts +81 -1
- package/dist/index.js +45 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12062,7 +12062,17 @@ var getAccess = () => {
|
|
|
12062
12062
|
options
|
|
12063
12063
|
);
|
|
12064
12064
|
};
|
|
12065
|
-
|
|
12065
|
+
const accessControllerListSharedV1 = (params, options) => {
|
|
12066
|
+
return axiosMutator(
|
|
12067
|
+
{
|
|
12068
|
+
url: `/v1/access/shared`,
|
|
12069
|
+
method: "GET",
|
|
12070
|
+
params
|
|
12071
|
+
},
|
|
12072
|
+
options
|
|
12073
|
+
);
|
|
12074
|
+
};
|
|
12075
|
+
return { accessControllerGrantAccessV1, accessControllerRevokeAccessV1, accessControllerAttachAccessV1, accessControllerDetachAccessV1, accessControllerAccessV1, accessControllerListSharedV1 };
|
|
12066
12076
|
};
|
|
12067
12077
|
|
|
12068
12078
|
// src/sdk/api-definitions/access.ts
|
|
@@ -12073,7 +12083,8 @@ var useAccessApi = () => {
|
|
|
12073
12083
|
detach: api.accessControllerDetachAccessV1,
|
|
12074
12084
|
grant: api.accessControllerGrantAccessV1,
|
|
12075
12085
|
revoke: api.accessControllerRevokeAccessV1,
|
|
12076
|
-
list: api.accessControllerAccessV1
|
|
12086
|
+
list: api.accessControllerAccessV1,
|
|
12087
|
+
listShared: api.accessControllerListSharedV1
|
|
12077
12088
|
});
|
|
12078
12089
|
};
|
|
12079
12090
|
|
|
@@ -12122,6 +12133,20 @@ var getPipelines = () => {
|
|
|
12122
12133
|
return { pipelinesControllerCreatePipelineV1, pipelinesControllerListPipelinesV1, pipelinesControllerCountPipelinesV1, pipelinesControllerGetPipelineV1 };
|
|
12123
12134
|
};
|
|
12124
12135
|
|
|
12136
|
+
// src/autogenerated/schemas/accessControllerListSharedV1Type.ts
|
|
12137
|
+
var AccessControllerListSharedV1Type = {
|
|
12138
|
+
collection: "collection",
|
|
12139
|
+
operation: "operation",
|
|
12140
|
+
stack: "stack",
|
|
12141
|
+
image: "image",
|
|
12142
|
+
video: "video",
|
|
12143
|
+
pose: "pose",
|
|
12144
|
+
storage: "storage",
|
|
12145
|
+
pipeline: "pipeline",
|
|
12146
|
+
workflow: "workflow",
|
|
12147
|
+
dataset: "dataset"
|
|
12148
|
+
};
|
|
12149
|
+
|
|
12125
12150
|
// src/autogenerated/schemas/accountEntityType.ts
|
|
12126
12151
|
var AccountEntityType = {
|
|
12127
12152
|
root: "root",
|
|
@@ -13787,6 +13812,20 @@ var SelfAccountDtoType = {
|
|
|
13787
13812
|
user: "user"
|
|
13788
13813
|
};
|
|
13789
13814
|
|
|
13815
|
+
// src/autogenerated/schemas/sharedResourceDtoType.ts
|
|
13816
|
+
var SharedResourceDtoType = {
|
|
13817
|
+
collection: "collection",
|
|
13818
|
+
operation: "operation",
|
|
13819
|
+
stack: "stack",
|
|
13820
|
+
image: "image",
|
|
13821
|
+
video: "video",
|
|
13822
|
+
pose: "pose",
|
|
13823
|
+
storage: "storage",
|
|
13824
|
+
pipeline: "pipeline",
|
|
13825
|
+
workflow: "workflow",
|
|
13826
|
+
dataset: "dataset"
|
|
13827
|
+
};
|
|
13828
|
+
|
|
13790
13829
|
// src/autogenerated/schemas/stackEntityKind.ts
|
|
13791
13830
|
var StackEntityKind = {
|
|
13792
13831
|
stack: "stack"
|
|
@@ -15746,6 +15785,7 @@ var createTokenSigner = (options) => {
|
|
|
15746
15785
|
};
|
|
15747
15786
|
};
|
|
15748
15787
|
export {
|
|
15788
|
+
AccessControllerListSharedV1Type,
|
|
15749
15789
|
AccountEntityType,
|
|
15750
15790
|
AccountsControllerListAccountsV1OrderBy,
|
|
15751
15791
|
AddAccountToGroupControllerParamsDtoRole,
|
|
@@ -16001,6 +16041,7 @@ export {
|
|
|
16001
16041
|
SegmentAnythingMaskV1ResponseKind,
|
|
16002
16042
|
SegmentAnythingMaskV1ResponseStatus,
|
|
16003
16043
|
SelfAccountDtoType,
|
|
16044
|
+
SharedResourceDtoType,
|
|
16004
16045
|
StackEntityKind,
|
|
16005
16046
|
StacksControllerListStacksV1OrderBy,
|
|
16006
16047
|
StorageEntityKind,
|