@smartspace/api-client 0.1.0-dev.80ce026 → 0.1.0-dev.8810e17
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/generated/chat/api.msw.d.ts +74 -0
- package/dist/generated/chat/api.msw.js +618 -0
- package/dist/generated/chat/models/messagesMessageError.d.ts +2 -0
- package/dist/generated/chat/zod.d.ts +4 -0
- package/dist/generated/chat/zod.js +4 -0
- package/dist/generated/config/api.d.ts +9 -3
- package/dist/generated/config/api.js +32 -1
- package/dist/generated/config/api.msw.d.ts +254 -0
- package/dist/generated/config/api.msw.js +2453 -0
- package/dist/generated/config/models/blocksRenameBlockSetRequest.d.ts +9 -0
- package/dist/generated/config/models/blocksRenameBlockSetRequest.js +8 -0
- package/dist/generated/config/models/dataSetsDataSet.d.ts +4 -0
- package/dist/generated/config/models/dataSetsSetDataSetScoping.d.ts +12 -0
- package/dist/generated/config/models/dataSetsSetDataSetScoping.js +2 -0
- package/dist/generated/config/models/draftsPublishDraftRequest.d.ts +2 -0
- package/dist/generated/config/models/enumsDataSetScopingMode.d.ts +11 -0
- package/dist/generated/config/models/enumsDataSetScopingMode.js +14 -0
- package/dist/generated/config/models/enumsPermissions.d.ts +2 -13
- package/dist/generated/config/models/enumsPermissions.js +0 -20
- package/dist/generated/config/models/enumsPermissionsItem.d.ts +18 -0
- package/dist/generated/config/models/enumsPermissionsItem.js +21 -0
- package/dist/generated/config/models/index.d.ts +7 -0
- package/dist/generated/config/models/index.js +7 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiSdkBlockRef.d.ts +10 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiSdkBlockRef.js +8 -0
- package/dist/generated/config/models/messagesMessageError.d.ts +2 -0
- package/dist/generated/config/models/pagedDataCollectionAccessAccessWorkSpace.d.ts +11 -0
- package/dist/generated/config/models/pagedDataCollectionAccessAccessWorkSpace.js +2 -0
- package/dist/generated/config/models/usersAppUserSummary.d.ts +16 -0
- package/dist/generated/config/models/usersAppUserSummary.js +8 -0
- package/dist/generated/config/zod.d.ts +135 -61
- package/dist/generated/config/zod.js +88 -33
- package/dist/mocks.d.ts +2 -0
- package/dist/mocks.js +42 -0
- package/package.json +24 -2
|
@@ -487,6 +487,18 @@ export declare const blockSetsGetDeployedBlockFilesParams: zod.ZodObject<{
|
|
|
487
487
|
export declare const blockSetsDeleteBlockSetParams: zod.ZodObject<{
|
|
488
488
|
name: zod.ZodString;
|
|
489
489
|
}, zod.core.$strict>;
|
|
490
|
+
/**
|
|
491
|
+
* @summary Rename a published custom block set (all versions). Set names are
|
|
492
|
+
organizational — flows bind to block (class) names, so renaming never
|
|
493
|
+
breaks a flow. Admin-only (the attribute must be method-level: the
|
|
494
|
+
Admin policy handler ignores class-level `[AuthorizeAdmin]`).
|
|
495
|
+
*/
|
|
496
|
+
export declare const blockSetsRenameBlockSetParams: zod.ZodObject<{
|
|
497
|
+
name: zod.ZodString;
|
|
498
|
+
}, zod.core.$strict>;
|
|
499
|
+
export declare const blockSetsRenameBlockSetBody: zod.ZodObject<{
|
|
500
|
+
newName: zod.ZodString;
|
|
501
|
+
}, zod.core.$strict>;
|
|
490
502
|
/**
|
|
491
503
|
* @summary Adds a new custom block set.
|
|
492
504
|
*/
|
|
@@ -574,6 +586,20 @@ export declare const blocksGetBlocksResponse: zod.ZodRecord<zod.ZodString, zod.Z
|
|
|
574
586
|
}>;
|
|
575
587
|
version: zod.ZodString;
|
|
576
588
|
}, zod.core.$strip>>>;
|
|
589
|
+
/**
|
|
590
|
+
* @summary List the SDK's built-in blocks (smartspace.* modules) for the
|
|
591
|
+
custom-blocks draft picker. App-native blocks (LLMs etc.) are
|
|
592
|
+
excluded upstream. Admin-only (method-level attribute — the Admin
|
|
593
|
+
policy handler ignores class-level `[AuthorizeAdmin]`).
|
|
594
|
+
*/
|
|
595
|
+
export declare const blocksGetSdkBlocksResponseItem: zod.ZodObject<{
|
|
596
|
+
name: zod.ZodString;
|
|
597
|
+
version: zod.ZodString;
|
|
598
|
+
}, zod.core.$strip>;
|
|
599
|
+
export declare const blocksGetSdkBlocksResponse: zod.ZodArray<zod.ZodObject<{
|
|
600
|
+
name: zod.ZodString;
|
|
601
|
+
version: zod.ZodString;
|
|
602
|
+
}, zod.core.$strip>>;
|
|
577
603
|
/**
|
|
578
604
|
* @summary Get the Python source of a native/SDK block — used by the custom-blocks
|
|
579
605
|
page as a starting scaffold when creating a draft. Admin-only (the
|
|
@@ -870,6 +896,11 @@ export declare const dataSetsGetResponse: zod.ZodObject<{
|
|
|
870
896
|
isVector: zod.ZodBoolean;
|
|
871
897
|
name: zod.ZodString;
|
|
872
898
|
}, zod.core.$strip>>;
|
|
899
|
+
scopingMode: zod.ZodEnum<{
|
|
900
|
+
Unrestricted: "Unrestricted";
|
|
901
|
+
PerSubject: "PerSubject";
|
|
902
|
+
}>;
|
|
903
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
873
904
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
874
905
|
}, zod.core.$strip>>;
|
|
875
906
|
total: zod.ZodNumber;
|
|
@@ -927,6 +958,11 @@ export declare const dataSetsGetByIdResponse: zod.ZodObject<{
|
|
|
927
958
|
isVector: zod.ZodBoolean;
|
|
928
959
|
name: zod.ZodString;
|
|
929
960
|
}, zod.core.$strip>>;
|
|
961
|
+
scopingMode: zod.ZodEnum<{
|
|
962
|
+
Unrestricted: "Unrestricted";
|
|
963
|
+
PerSubject: "PerSubject";
|
|
964
|
+
}>;
|
|
965
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
930
966
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
931
967
|
}, zod.core.$strip>;
|
|
932
968
|
/**
|
|
@@ -970,6 +1006,11 @@ export declare const dataSetsPutResponse: zod.ZodObject<{
|
|
|
970
1006
|
isVector: zod.ZodBoolean;
|
|
971
1007
|
name: zod.ZodString;
|
|
972
1008
|
}, zod.core.$strip>>;
|
|
1009
|
+
scopingMode: zod.ZodEnum<{
|
|
1010
|
+
Unrestricted: "Unrestricted";
|
|
1011
|
+
PerSubject: "PerSubject";
|
|
1012
|
+
}>;
|
|
1013
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
973
1014
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
974
1015
|
}, zod.core.$strip>;
|
|
975
1016
|
/**
|
|
@@ -1051,6 +1092,11 @@ export declare const dataSetsSetDataspaceResponse: zod.ZodObject<{
|
|
|
1051
1092
|
isVector: zod.ZodBoolean;
|
|
1052
1093
|
name: zod.ZodString;
|
|
1053
1094
|
}, zod.core.$strip>>;
|
|
1095
|
+
scopingMode: zod.ZodEnum<{
|
|
1096
|
+
Unrestricted: "Unrestricted";
|
|
1097
|
+
PerSubject: "PerSubject";
|
|
1098
|
+
}>;
|
|
1099
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1054
1100
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1055
1101
|
}, zod.core.$strip>;
|
|
1056
1102
|
export declare const dataSetsExportPathIdRegExp: RegExp;
|
|
@@ -1174,6 +1220,20 @@ export declare const dataSetsDeleteDataSetPropertyParams: zod.ZodObject<{
|
|
|
1174
1220
|
id: zod.ZodString;
|
|
1175
1221
|
name: zod.ZodString;
|
|
1176
1222
|
}, zod.core.$strict>;
|
|
1223
|
+
/**
|
|
1224
|
+
* @summary Set the per-document scoping config (mode + subject path) on a dataset.
|
|
1225
|
+
*/
|
|
1226
|
+
export declare const dataSetsPutScopingPathIdRegExp: RegExp;
|
|
1227
|
+
export declare const dataSetsPutScopingParams: zod.ZodObject<{
|
|
1228
|
+
id: zod.ZodString;
|
|
1229
|
+
}, zod.core.$strict>;
|
|
1230
|
+
export declare const dataSetsPutScopingBody: zod.ZodObject<{
|
|
1231
|
+
mode: zod.ZodEnum<{
|
|
1232
|
+
Unrestricted: "Unrestricted";
|
|
1233
|
+
PerSubject: "PerSubject";
|
|
1234
|
+
}>;
|
|
1235
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1236
|
+
}, zod.core.$strict>;
|
|
1177
1237
|
/**
|
|
1178
1238
|
* @summary Fetch a list of all available data source types in SmartSpace.
|
|
1179
1239
|
*/
|
|
@@ -1524,6 +1584,11 @@ export declare const dataSpacesGetResponse: zod.ZodObject<{
|
|
|
1524
1584
|
isVector: zod.ZodBoolean;
|
|
1525
1585
|
name: zod.ZodString;
|
|
1526
1586
|
}, zod.core.$strip>>;
|
|
1587
|
+
scopingMode: zod.ZodEnum<{
|
|
1588
|
+
Unrestricted: "Unrestricted";
|
|
1589
|
+
PerSubject: "PerSubject";
|
|
1590
|
+
}>;
|
|
1591
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1527
1592
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1528
1593
|
}, zod.core.$strip>>;
|
|
1529
1594
|
id: zod.ZodString;
|
|
@@ -1579,6 +1644,11 @@ export declare const dataSpacesGetByIdResponse: zod.ZodObject<{
|
|
|
1579
1644
|
isVector: zod.ZodBoolean;
|
|
1580
1645
|
name: zod.ZodString;
|
|
1581
1646
|
}, zod.core.$strip>>;
|
|
1647
|
+
scopingMode: zod.ZodEnum<{
|
|
1648
|
+
Unrestricted: "Unrestricted";
|
|
1649
|
+
PerSubject: "PerSubject";
|
|
1650
|
+
}>;
|
|
1651
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1582
1652
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1583
1653
|
}, zod.core.$strip>>;
|
|
1584
1654
|
id: zod.ZodString;
|
|
@@ -1630,6 +1700,11 @@ export declare const dataSpacesPutResponse: zod.ZodObject<{
|
|
|
1630
1700
|
isVector: zod.ZodBoolean;
|
|
1631
1701
|
name: zod.ZodString;
|
|
1632
1702
|
}, zod.core.$strip>>;
|
|
1703
|
+
scopingMode: zod.ZodEnum<{
|
|
1704
|
+
Unrestricted: "Unrestricted";
|
|
1705
|
+
PerSubject: "PerSubject";
|
|
1706
|
+
}>;
|
|
1707
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1633
1708
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1634
1709
|
}, zod.core.$strip>>;
|
|
1635
1710
|
id: zod.ZodString;
|
|
@@ -1698,6 +1773,11 @@ export declare const dataSpacesGetDataSetsResponse: zod.ZodObject<{
|
|
|
1698
1773
|
isVector: zod.ZodBoolean;
|
|
1699
1774
|
name: zod.ZodString;
|
|
1700
1775
|
}, zod.core.$strip>>;
|
|
1776
|
+
scopingMode: zod.ZodEnum<{
|
|
1777
|
+
Unrestricted: "Unrestricted";
|
|
1778
|
+
PerSubject: "PerSubject";
|
|
1779
|
+
}>;
|
|
1780
|
+
subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1701
1781
|
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1702
1782
|
}, zod.core.$strip>>;
|
|
1703
1783
|
total: zod.ZodNumber;
|
|
@@ -2033,6 +2113,7 @@ export declare const draftsPublishDraftParams: zod.ZodObject<{
|
|
|
2033
2113
|
}, zod.core.$strict>;
|
|
2034
2114
|
export declare const draftsPublishDraftBody: zod.ZodObject<{
|
|
2035
2115
|
confirmOverwrite: zod.ZodBoolean;
|
|
2116
|
+
publishAs: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2036
2117
|
}, zod.core.$strict>;
|
|
2037
2118
|
export declare const draftsPublishDraftResponseBlockSetIdRegExp: RegExp;
|
|
2038
2119
|
export declare const draftsPublishDraftResponse: zod.ZodObject<{
|
|
@@ -2844,8 +2925,7 @@ export declare const usersGetUsersResponse: zod.ZodObject<{
|
|
|
2844
2925
|
lastActiveAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
2845
2926
|
mobilePhone: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2846
2927
|
name: zod.ZodString;
|
|
2847
|
-
permissions: zod.ZodEnum<{
|
|
2848
|
-
None: "None";
|
|
2928
|
+
permissions: zod.ZodArray<zod.ZodEnum<{
|
|
2849
2929
|
WorkspaceCreate: "WorkspaceCreate";
|
|
2850
2930
|
WorkspaceEdit: "WorkspaceEdit";
|
|
2851
2931
|
WorkspaceDelete: "WorkspaceDelete";
|
|
@@ -2855,13 +2935,12 @@ export declare const usersGetUsersResponse: zod.ZodObject<{
|
|
|
2855
2935
|
ConnectorCreate: "ConnectorCreate";
|
|
2856
2936
|
ConnectorEdit: "ConnectorEdit";
|
|
2857
2937
|
ConnectorDelete: "ConnectorDelete";
|
|
2858
|
-
}
|
|
2938
|
+
}>>;
|
|
2859
2939
|
}, zod.core.$strip>>;
|
|
2860
2940
|
total: zod.ZodNumber;
|
|
2861
2941
|
}, zod.core.$strip>;
|
|
2862
2942
|
export declare const usersGetUsersByFilterParams: zod.ZodObject<{
|
|
2863
|
-
permissions: zod.ZodEnum<{
|
|
2864
|
-
None: "None";
|
|
2943
|
+
permissions: zod.ZodArray<zod.ZodEnum<{
|
|
2865
2944
|
WorkspaceCreate: "WorkspaceCreate";
|
|
2866
2945
|
WorkspaceEdit: "WorkspaceEdit";
|
|
2867
2946
|
WorkspaceDelete: "WorkspaceDelete";
|
|
@@ -2871,10 +2950,9 @@ export declare const usersGetUsersByFilterParams: zod.ZodObject<{
|
|
|
2871
2950
|
ConnectorCreate: "ConnectorCreate";
|
|
2872
2951
|
ConnectorEdit: "ConnectorEdit";
|
|
2873
2952
|
ConnectorDelete: "ConnectorDelete";
|
|
2874
|
-
}
|
|
2953
|
+
}>>;
|
|
2875
2954
|
}, zod.core.$strict>;
|
|
2876
|
-
export declare const
|
|
2877
|
-
None: "None";
|
|
2955
|
+
export declare const usersGetMyPermissionsResponseItem: zod.ZodEnum<{
|
|
2878
2956
|
WorkspaceCreate: "WorkspaceCreate";
|
|
2879
2957
|
WorkspaceEdit: "WorkspaceEdit";
|
|
2880
2958
|
WorkspaceDelete: "WorkspaceDelete";
|
|
@@ -2885,6 +2963,17 @@ export declare const usersGetMyPermissionsResponse: zod.ZodEnum<{
|
|
|
2885
2963
|
ConnectorEdit: "ConnectorEdit";
|
|
2886
2964
|
ConnectorDelete: "ConnectorDelete";
|
|
2887
2965
|
}>;
|
|
2966
|
+
export declare const usersGetMyPermissionsResponse: zod.ZodArray<zod.ZodEnum<{
|
|
2967
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2968
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2969
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2970
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2971
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2972
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2973
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2974
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2975
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2976
|
+
}>>;
|
|
2888
2977
|
/**
|
|
2889
2978
|
* @summary Disable user (Remove all assigned WorkSpaces by UserId)
|
|
2890
2979
|
*/
|
|
@@ -2922,21 +3011,8 @@ export declare const usersGetUserDetailResponse: zod.ZodObject<{
|
|
|
2922
3011
|
emailAddress: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2923
3012
|
id: zod.ZodString;
|
|
2924
3013
|
isAdmin: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
2925
|
-
lastActiveAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
2926
3014
|
mobilePhone: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2927
3015
|
name: zod.ZodString;
|
|
2928
|
-
permissions: zod.ZodEnum<{
|
|
2929
|
-
None: "None";
|
|
2930
|
-
WorkspaceCreate: "WorkspaceCreate";
|
|
2931
|
-
WorkspaceEdit: "WorkspaceEdit";
|
|
2932
|
-
WorkspaceDelete: "WorkspaceDelete";
|
|
2933
|
-
DataSpaceCreate: "DataSpaceCreate";
|
|
2934
|
-
DataSpaceEdit: "DataSpaceEdit";
|
|
2935
|
-
DataSpaceDelete: "DataSpaceDelete";
|
|
2936
|
-
ConnectorCreate: "ConnectorCreate";
|
|
2937
|
-
ConnectorEdit: "ConnectorEdit";
|
|
2938
|
-
ConnectorDelete: "ConnectorDelete";
|
|
2939
|
-
}>;
|
|
2940
3016
|
}, zod.core.$strip>;
|
|
2941
3017
|
/**
|
|
2942
3018
|
* @summary Retrieves the profile photo for a user. Returns the raw JPEG image with HTTP cache headers
|
|
@@ -2960,42 +3036,28 @@ export declare const usersGetAccessWorkSpacesQueryParams: zod.ZodObject<{
|
|
|
2960
3036
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2961
3037
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2962
3038
|
}, zod.core.$strict>;
|
|
2963
|
-
export declare const
|
|
2964
|
-
export declare const
|
|
2965
|
-
export declare const
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
3039
|
+
export declare const usersGetAccessWorkSpacesResponseDataItemIdRegExp: RegExp;
|
|
3040
|
+
export declare const usersGetAccessWorkSpacesResponseDataItemWorkSpaceIdRegExp: RegExp;
|
|
3041
|
+
export declare const usersGetAccessWorkSpacesResponse: zod.ZodObject<{
|
|
3042
|
+
data: zod.ZodArray<zod.ZodObject<{
|
|
3043
|
+
accessType: zod.ZodEnum<{
|
|
3044
|
+
Principal: "Principal";
|
|
3045
|
+
Group: "Group";
|
|
3046
|
+
}>;
|
|
3047
|
+
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3048
|
+
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3049
|
+
objectId: zod.ZodString;
|
|
3050
|
+
principalType: zod.ZodOptional<zod.ZodEnum<{
|
|
3051
|
+
Unknown: "Unknown";
|
|
3052
|
+
User: "User";
|
|
3053
|
+
ServicePrincipal: "ServicePrincipal";
|
|
3054
|
+
Internal: "Internal";
|
|
3055
|
+
}>>;
|
|
3056
|
+
workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3057
|
+
workSpaceName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3058
|
+
}, zod.core.$strip>>;
|
|
3059
|
+
total: zod.ZodNumber;
|
|
2981
3060
|
}, zod.core.$strip>;
|
|
2982
|
-
export declare const usersGetAccessWorkSpacesResponse: zod.ZodArray<zod.ZodObject<{
|
|
2983
|
-
accessType: zod.ZodEnum<{
|
|
2984
|
-
Principal: "Principal";
|
|
2985
|
-
Group: "Group";
|
|
2986
|
-
}>;
|
|
2987
|
-
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2988
|
-
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2989
|
-
objectId: zod.ZodString;
|
|
2990
|
-
principalType: zod.ZodOptional<zod.ZodEnum<{
|
|
2991
|
-
Unknown: "Unknown";
|
|
2992
|
-
User: "User";
|
|
2993
|
-
ServicePrincipal: "ServicePrincipal";
|
|
2994
|
-
Internal: "Internal";
|
|
2995
|
-
}>>;
|
|
2996
|
-
workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2997
|
-
workSpaceName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2998
|
-
}, zod.core.$strip>>;
|
|
2999
3061
|
export declare const usersAdminPermissionPathUserIdRegExp: RegExp;
|
|
3000
3062
|
export declare const usersAdminPermissionParams: zod.ZodObject<{
|
|
3001
3063
|
userId: zod.ZodString;
|
|
@@ -3007,8 +3069,7 @@ export declare const usersAddUserPermissionPathUserIdRegExp: RegExp;
|
|
|
3007
3069
|
export declare const usersAddUserPermissionParams: zod.ZodObject<{
|
|
3008
3070
|
userId: zod.ZodString;
|
|
3009
3071
|
}, zod.core.$strict>;
|
|
3010
|
-
export declare const
|
|
3011
|
-
None: "None";
|
|
3072
|
+
export declare const usersAddUserPermissionBodyItem: zod.ZodEnum<{
|
|
3012
3073
|
WorkspaceCreate: "WorkspaceCreate";
|
|
3013
3074
|
WorkspaceEdit: "WorkspaceEdit";
|
|
3014
3075
|
WorkspaceDelete: "WorkspaceDelete";
|
|
@@ -3019,11 +3080,21 @@ export declare const usersAddUserPermissionBody: zod.ZodEnum<{
|
|
|
3019
3080
|
ConnectorEdit: "ConnectorEdit";
|
|
3020
3081
|
ConnectorDelete: "ConnectorDelete";
|
|
3021
3082
|
}>;
|
|
3083
|
+
export declare const usersAddUserPermissionBody: zod.ZodArray<zod.ZodEnum<{
|
|
3084
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
3085
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
3086
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
3087
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
3088
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
3089
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
3090
|
+
ConnectorCreate: "ConnectorCreate";
|
|
3091
|
+
ConnectorEdit: "ConnectorEdit";
|
|
3092
|
+
ConnectorDelete: "ConnectorDelete";
|
|
3093
|
+
}>>;
|
|
3022
3094
|
export declare const usersRemoveUserPermissionPathUserIdRegExp: RegExp;
|
|
3023
3095
|
export declare const usersRemoveUserPermissionParams: zod.ZodObject<{
|
|
3024
3096
|
userId: zod.ZodString;
|
|
3025
|
-
permission: zod.ZodEnum<{
|
|
3026
|
-
None: "None";
|
|
3097
|
+
permission: zod.ZodArray<zod.ZodEnum<{
|
|
3027
3098
|
WorkspaceCreate: "WorkspaceCreate";
|
|
3028
3099
|
WorkspaceEdit: "WorkspaceEdit";
|
|
3029
3100
|
WorkspaceDelete: "WorkspaceDelete";
|
|
@@ -3033,7 +3104,7 @@ export declare const usersRemoveUserPermissionParams: zod.ZodObject<{
|
|
|
3033
3104
|
ConnectorCreate: "ConnectorCreate";
|
|
3034
3105
|
ConnectorEdit: "ConnectorEdit";
|
|
3035
3106
|
ConnectorDelete: "ConnectorDelete";
|
|
3036
|
-
}
|
|
3107
|
+
}>>;
|
|
3037
3108
|
}, zod.core.$strict>;
|
|
3038
3109
|
/**
|
|
3039
3110
|
* @summary Returns a list of available Azure locations for deploying virtual machines
|
|
@@ -4222,6 +4293,7 @@ export declare const sandBoxGetThreadMessagesResponseItem: zod.ZodObject<{
|
|
|
4222
4293
|
blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4223
4294
|
code: zod.ZodNumber;
|
|
4224
4295
|
data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4296
|
+
errorCode: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4225
4297
|
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4226
4298
|
}, zod.core.$strip>>;
|
|
4227
4299
|
hasComments: zod.ZodBoolean;
|
|
@@ -4249,6 +4321,7 @@ export declare const sandBoxGetThreadMessagesResponse: zod.ZodArray<zod.ZodObjec
|
|
|
4249
4321
|
blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4250
4322
|
code: zod.ZodNumber;
|
|
4251
4323
|
data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4324
|
+
errorCode: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4252
4325
|
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4253
4326
|
}, zod.core.$strip>>;
|
|
4254
4327
|
hasComments: zod.ZodBoolean;
|
|
@@ -4299,6 +4372,7 @@ export declare const sandBoxThreadMessagesResponse: zod.ZodObject<{
|
|
|
4299
4372
|
blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4300
4373
|
code: zod.ZodNumber;
|
|
4301
4374
|
data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4375
|
+
errorCode: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4302
4376
|
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4303
4377
|
}, zod.core.$strip>>;
|
|
4304
4378
|
hasComments: zod.ZodBoolean;
|