synapse-react-client 3.3.0 → 3.3.2
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.cjs +20 -20
- package/dist/index.d.ts +3 -4
- package/dist/index.js +5950 -5830
- package/dist/umd/{synapse-react-client.development.cjs → synapse-react-client.development.js} +206 -119
- package/dist/umd/{synapse-react-client.production.min.cjs → synapse-react-client.production.min.js} +161 -161
- package/package.json +15 -15
package/dist/index.d.ts
CHANGED
|
@@ -3424,9 +3424,9 @@ declare type PartialStateObject = {
|
|
|
3424
3424
|
|
|
3425
3425
|
export declare function PasswordField(props: TextFieldProps_2): default_2.JSX.Element;
|
|
3426
3426
|
|
|
3427
|
-
declare
|
|
3427
|
+
declare type PermissionLevel = (typeof permissionLevels)[number];
|
|
3428
3428
|
|
|
3429
|
-
declare
|
|
3429
|
+
declare const permissionLevels: readonly ["CAN_REVIEW_SUBMISSIONS", "IS_EXEMPTION_ELIGIBLE", "CAN_REVIEW_SUBMISSIONS_AND_IS_EXEMPTION_ELIGIBLE"];
|
|
3430
3430
|
|
|
3431
3431
|
declare namespace PermissionLevelToAccessType {
|
|
3432
3432
|
export {
|
|
@@ -3957,7 +3957,7 @@ declare function restoreFromTrashCan(entityId: string, accessToken: string | und
|
|
|
3957
3957
|
|
|
3958
3958
|
declare const restoreThread: (accessToken: string | undefined, threadId: string) => Promise<void>;
|
|
3959
3959
|
|
|
3960
|
-
declare const resultToJson:
|
|
3960
|
+
declare const resultToJson: (headerColumns: SelectColumn[], rowColumns: Row[]) => Record<string, string | null>[];
|
|
3961
3961
|
|
|
3962
3962
|
/**
|
|
3963
3963
|
* Revokes the certification for the user. Only an ACT member can perform this operation.
|
|
@@ -4738,7 +4738,6 @@ declare namespace SynapseComponents {
|
|
|
4738
4738
|
useQueryContext,
|
|
4739
4739
|
useInfiniteQueryContext,
|
|
4740
4740
|
usePaginatedQueryContext,
|
|
4741
|
-
LockedColumn,
|
|
4742
4741
|
QueryContextProviderProps,
|
|
4743
4742
|
QueryContextType,
|
|
4744
4743
|
QueryCount,
|