@constructive-io/react 0.23.9 → 0.23.11
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/admin/hooks/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +30 -6
- package/admin/hooks/invalidation.js +80 -16
- package/admin/hooks/mutation-keys.d.ts +60 -12
- package/admin/hooks/mutation-keys.js +48 -8
- package/admin/hooks/mutations/index.d.ts +15 -3
- package/admin/hooks/mutations/index.js +15 -3
- package/admin/hooks/mutations/useCreateAppPermissionDefaultGrantMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateAppPermissionDefaultGrantMutation.js +34 -0
- package/admin/hooks/mutations/useCreateAppPermissionDefaultPermissionMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateAppPermissionDefaultPermissionMutation.js +34 -0
- package/admin/hooks/mutations/useCreateOrgPermissionDefaultGrantMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgPermissionDefaultGrantMutation.js +34 -0
- package/admin/hooks/mutations/useCreateOrgPermissionDefaultPermissionMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgPermissionDefaultPermissionMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteAppPermissionDefaultGrantMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteAppPermissionDefaultGrantMutation.js +39 -0
- package/admin/hooks/mutations/useDeleteAppPermissionDefaultPermissionMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteAppPermissionDefaultPermissionMutation.js +39 -0
- package/admin/hooks/mutations/useDeleteOrgPermissionDefaultGrantMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgPermissionDefaultGrantMutation.js +39 -0
- package/admin/hooks/mutations/useDeleteOrgPermissionDefaultPermissionMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgPermissionDefaultPermissionMutation.js +39 -0
- package/admin/hooks/mutations/useUpdateAppPermissionDefaultGrantMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateAppPermissionDefaultGrantMutation.js +40 -0
- package/admin/hooks/mutations/useUpdateAppPermissionDefaultPermissionMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateAppPermissionDefaultPermissionMutation.js +40 -0
- package/admin/hooks/mutations/useUpdateOrgPermissionDefaultGrantMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgPermissionDefaultGrantMutation.js +40 -0
- package/admin/hooks/mutations/useUpdateOrgPermissionDefaultPermissionMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgPermissionDefaultPermissionMutation.js +40 -0
- package/admin/hooks/queries/index.d.ts +10 -2
- package/admin/hooks/queries/index.js +10 -2
- package/admin/hooks/queries/useAppPermissionDefaultGrantQuery.d.ts +65 -0
- package/admin/hooks/queries/useAppPermissionDefaultGrantQuery.js +53 -0
- package/admin/hooks/queries/useAppPermissionDefaultGrantsQuery.d.ts +69 -0
- package/admin/hooks/queries/useAppPermissionDefaultGrantsQuery.js +38 -0
- package/admin/hooks/queries/useAppPermissionDefaultPermissionQuery.d.ts +65 -0
- package/admin/hooks/queries/useAppPermissionDefaultPermissionQuery.js +53 -0
- package/admin/hooks/queries/useAppPermissionDefaultPermissionsQuery.d.ts +69 -0
- package/admin/hooks/queries/useAppPermissionDefaultPermissionsQuery.js +38 -0
- package/admin/hooks/queries/useOrgPermissionDefaultGrantQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgPermissionDefaultGrantQuery.js +53 -0
- package/admin/hooks/queries/useOrgPermissionDefaultGrantsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgPermissionDefaultGrantsQuery.js +38 -0
- package/admin/hooks/queries/useOrgPermissionDefaultPermissionQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgPermissionDefaultPermissionQuery.js +53 -0
- package/admin/hooks/queries/useOrgPermissionDefaultPermissionsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgPermissionDefaultPermissionsQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +70 -14
- package/admin/hooks/query-keys.js +45 -9
- package/admin/orm/index.d.ts +10 -2
- package/admin/orm/index.js +10 -2
- package/admin/orm/input-types.d.ts +1611 -230
- package/admin/orm/input-types.js +9 -1
- package/admin/orm/models/appPermissionDefaultGrant.d.ts +54 -0
- package/admin/orm/models/appPermissionDefaultGrant.js +104 -0
- package/admin/orm/models/appPermissionDefaultPermission.d.ts +54 -0
- package/admin/orm/models/appPermissionDefaultPermission.js +104 -0
- package/admin/orm/models/index.d.ts +5 -1
- package/admin/orm/models/index.js +11 -3
- package/admin/orm/models/orgPermissionDefaultGrant.d.ts +54 -0
- package/admin/orm/models/orgPermissionDefaultGrant.js +104 -0
- package/admin/orm/models/orgPermissionDefaultPermission.d.ts +54 -0
- package/admin/orm/models/orgPermissionDefaultPermission.js +104 -0
- package/admin/schema-types.d.ts +702 -271
- package/admin/types.d.ts +49 -15
- package/agent/orm/input-types.d.ts +289 -47
- package/agent/orm/input-types.js +1 -0
- package/agent/schema-types.d.ts +37 -14
- package/agent/types.d.ts +3 -2
- package/api/hooks/index.d.ts +1 -1
- package/api/hooks/index.js +1 -1
- package/api/hooks/invalidation.d.ts +6 -0
- package/api/hooks/invalidation.js +16 -0
- package/api/hooks/mutation-keys.d.ts +12 -0
- package/api/hooks/mutation-keys.js +8 -1
- package/api/hooks/mutations/index.d.ts +3 -0
- package/api/hooks/mutations/index.js +3 -0
- package/api/hooks/mutations/useCreateCompositeTypeMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateCompositeTypeMutation.js +34 -0
- package/api/hooks/mutations/useDeleteCompositeTypeMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteCompositeTypeMutation.js +39 -0
- package/api/hooks/mutations/useUpdateCompositeTypeMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateCompositeTypeMutation.js +40 -0
- package/api/hooks/queries/index.d.ts +2 -0
- package/api/hooks/queries/index.js +2 -0
- package/api/hooks/queries/useCompositeTypeQuery.d.ts +65 -0
- package/api/hooks/queries/useCompositeTypeQuery.js +53 -0
- package/api/hooks/queries/useCompositeTypesQuery.d.ts +69 -0
- package/api/hooks/queries/useCompositeTypesQuery.js +38 -0
- package/api/hooks/query-keys.d.ts +14 -0
- package/api/hooks/query-keys.js +9 -1
- package/api/orm/index.d.ts +2 -0
- package/api/orm/index.js +2 -0
- package/api/orm/input-types.d.ts +1064 -125
- package/api/orm/input-types.js +3 -0
- package/api/orm/models/compositeType.d.ts +54 -0
- package/api/orm/models/compositeType.js +104 -0
- package/api/orm/models/index.d.ts +1 -0
- package/api/orm/models/index.js +3 -1
- package/api/schema-types.d.ts +664 -560
- package/api/types.d.ts +15 -14
- package/auth/hooks/mutation-keys.d.ts +6 -0
- package/auth/hooks/mutation-keys.js +9 -0
- package/auth/hooks/mutations/index.d.ts +3 -0
- package/auth/hooks/mutations/index.js +3 -0
- package/auth/hooks/mutations/useLinkIdentityMutation.d.ts +20 -0
- package/auth/hooks/mutations/useLinkIdentityMutation.js +26 -0
- package/auth/hooks/mutations/useSignInSmsOtpMutation.d.ts +20 -0
- package/auth/hooks/mutations/useSignInSmsOtpMutation.js +26 -0
- package/auth/hooks/mutations/useSignUpSmsMutation.d.ts +20 -0
- package/auth/hooks/mutations/useSignUpSmsMutation.js +26 -0
- package/auth/orm/index.d.ts +15 -0
- package/auth/orm/input-types.d.ts +197 -1
- package/auth/orm/mutation/index.d.ts +25 -1
- package/auth/orm/mutation/index.js +36 -0
- package/auth/schema-types.d.ts +78 -34
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +30 -6
- package/esm/admin/hooks/invalidation.js +81 -17
- package/esm/admin/hooks/mutation-keys.d.ts +60 -12
- package/esm/admin/hooks/mutation-keys.js +47 -7
- package/esm/admin/hooks/mutations/index.d.ts +15 -3
- package/esm/admin/hooks/mutations/index.js +15 -3
- package/esm/admin/hooks/mutations/useCreateAppPermissionDefaultGrantMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateAppPermissionDefaultGrantMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateAppPermissionDefaultPermissionMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateAppPermissionDefaultPermissionMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgPermissionDefaultGrantMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgPermissionDefaultGrantMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgPermissionDefaultPermissionMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgPermissionDefaultPermissionMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteAppPermissionDefaultGrantMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteAppPermissionDefaultGrantMutation.js +36 -0
- package/esm/admin/hooks/mutations/useDeleteAppPermissionDefaultPermissionMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteAppPermissionDefaultPermissionMutation.js +36 -0
- package/esm/admin/hooks/mutations/useDeleteOrgPermissionDefaultGrantMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgPermissionDefaultGrantMutation.js +36 -0
- package/esm/admin/hooks/mutations/useDeleteOrgPermissionDefaultPermissionMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgPermissionDefaultPermissionMutation.js +36 -0
- package/esm/admin/hooks/mutations/useUpdateAppPermissionDefaultGrantMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateAppPermissionDefaultGrantMutation.js +37 -0
- package/esm/admin/hooks/mutations/useUpdateAppPermissionDefaultPermissionMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateAppPermissionDefaultPermissionMutation.js +37 -0
- package/esm/admin/hooks/mutations/useUpdateOrgPermissionDefaultGrantMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgPermissionDefaultGrantMutation.js +37 -0
- package/esm/admin/hooks/mutations/useUpdateOrgPermissionDefaultPermissionMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgPermissionDefaultPermissionMutation.js +37 -0
- package/esm/admin/hooks/queries/index.d.ts +10 -2
- package/esm/admin/hooks/queries/index.js +10 -2
- package/esm/admin/hooks/queries/useAppPermissionDefaultGrantQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useAppPermissionDefaultGrantQuery.js +47 -0
- package/esm/admin/hooks/queries/useAppPermissionDefaultGrantsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useAppPermissionDefaultGrantsQuery.js +32 -0
- package/esm/admin/hooks/queries/useAppPermissionDefaultPermissionQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useAppPermissionDefaultPermissionQuery.js +47 -0
- package/esm/admin/hooks/queries/useAppPermissionDefaultPermissionsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useAppPermissionDefaultPermissionsQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultGrantQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultGrantQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultGrantsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultGrantsQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultPermissionQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultPermissionQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultPermissionsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgPermissionDefaultPermissionsQuery.js +32 -0
- package/esm/admin/hooks/query-keys.d.ts +70 -14
- package/esm/admin/hooks/query-keys.js +44 -8
- package/esm/admin/orm/index.d.ts +10 -2
- package/esm/admin/orm/index.js +10 -2
- package/esm/admin/orm/input-types.d.ts +1611 -230
- package/esm/admin/orm/input-types.js +9 -1
- package/esm/admin/orm/models/appPermissionDefaultGrant.d.ts +54 -0
- package/esm/admin/orm/models/appPermissionDefaultGrant.js +100 -0
- package/esm/admin/orm/models/appPermissionDefaultPermission.d.ts +54 -0
- package/esm/admin/orm/models/appPermissionDefaultPermission.js +100 -0
- package/esm/admin/orm/models/index.d.ts +5 -1
- package/esm/admin/orm/models/index.js +5 -1
- package/esm/admin/orm/models/orgPermissionDefaultGrant.d.ts +54 -0
- package/esm/admin/orm/models/orgPermissionDefaultGrant.js +100 -0
- package/esm/admin/orm/models/orgPermissionDefaultPermission.d.ts +54 -0
- package/esm/admin/orm/models/orgPermissionDefaultPermission.js +100 -0
- package/esm/admin/schema-types.d.ts +702 -271
- package/esm/admin/types.d.ts +49 -15
- package/esm/agent/orm/input-types.d.ts +289 -47
- package/esm/agent/orm/input-types.js +1 -0
- package/esm/agent/schema-types.d.ts +37 -14
- package/esm/agent/types.d.ts +3 -2
- package/esm/api/hooks/index.d.ts +1 -1
- package/esm/api/hooks/index.js +1 -1
- package/esm/api/hooks/invalidation.d.ts +6 -0
- package/esm/api/hooks/invalidation.js +17 -1
- package/esm/api/hooks/mutation-keys.d.ts +12 -0
- package/esm/api/hooks/mutation-keys.js +7 -0
- package/esm/api/hooks/mutations/index.d.ts +3 -0
- package/esm/api/hooks/mutations/index.js +3 -0
- package/esm/api/hooks/mutations/useCreateCompositeTypeMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateCompositeTypeMutation.js +31 -0
- package/esm/api/hooks/mutations/useDeleteCompositeTypeMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteCompositeTypeMutation.js +36 -0
- package/esm/api/hooks/mutations/useUpdateCompositeTypeMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateCompositeTypeMutation.js +37 -0
- package/esm/api/hooks/queries/index.d.ts +2 -0
- package/esm/api/hooks/queries/index.js +2 -0
- package/esm/api/hooks/queries/useCompositeTypeQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useCompositeTypeQuery.js +47 -0
- package/esm/api/hooks/queries/useCompositeTypesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useCompositeTypesQuery.js +32 -0
- package/esm/api/hooks/query-keys.d.ts +14 -0
- package/esm/api/hooks/query-keys.js +8 -0
- package/esm/api/orm/index.d.ts +2 -0
- package/esm/api/orm/index.js +2 -0
- package/esm/api/orm/input-types.d.ts +1064 -125
- package/esm/api/orm/input-types.js +3 -0
- package/esm/api/orm/models/compositeType.d.ts +54 -0
- package/esm/api/orm/models/compositeType.js +100 -0
- package/esm/api/orm/models/index.d.ts +1 -0
- package/esm/api/orm/models/index.js +1 -0
- package/esm/api/schema-types.d.ts +664 -560
- package/esm/api/types.d.ts +15 -14
- package/esm/auth/hooks/mutation-keys.d.ts +6 -0
- package/esm/auth/hooks/mutation-keys.js +9 -0
- package/esm/auth/hooks/mutations/index.d.ts +3 -0
- package/esm/auth/hooks/mutations/index.js +3 -0
- package/esm/auth/hooks/mutations/useLinkIdentityMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useLinkIdentityMutation.js +23 -0
- package/esm/auth/hooks/mutations/useSignInSmsOtpMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useSignInSmsOtpMutation.js +23 -0
- package/esm/auth/hooks/mutations/useSignUpSmsMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useSignUpSmsMutation.js +23 -0
- package/esm/auth/orm/index.d.ts +15 -0
- package/esm/auth/orm/input-types.d.ts +197 -1
- package/esm/auth/orm/mutation/index.d.ts +25 -1
- package/esm/auth/orm/mutation/index.js +36 -0
- package/esm/auth/schema-types.d.ts +78 -34
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +79 -73
- package/esm/modules/hooks/invalidation.js +183 -167
- package/esm/modules/hooks/mutation-keys.d.ts +158 -146
- package/esm/modules/hooks/mutation-keys.js +104 -94
- package/esm/modules/hooks/mutations/index.d.ts +42 -39
- package/esm/modules/hooks/mutations/index.js +42 -39
- package/esm/modules/hooks/mutations/useCreateFunctionInvocationModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreateFunctionInvocationModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useDeleteFunctionInvocationModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteFunctionInvocationModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdateFunctionInvocationModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateFunctionInvocationModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +28 -26
- package/esm/modules/hooks/queries/index.js +28 -26
- package/esm/modules/hooks/queries/useFunctionInvocationModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useFunctionInvocationModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useFunctionInvocationModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/useFunctionInvocationModulesQuery.js +32 -0
- package/esm/modules/hooks/query-keys.d.ts +186 -172
- package/esm/modules/hooks/query-keys.js +107 -99
- package/esm/modules/orm/index.d.ts +28 -26
- package/esm/modules/orm/index.js +28 -26
- package/esm/modules/orm/input-types.d.ts +4485 -2514
- package/esm/modules/orm/models/functionInvocationModule.d.ts +54 -0
- package/esm/modules/orm/models/functionInvocationModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +14 -13
- package/esm/modules/orm/models/index.js +14 -13
- package/esm/modules/schema-types.d.ts +2258 -1951
- package/esm/modules/types.d.ts +296 -233
- package/esm/objects/orm/input-types.d.ts +62 -0
- package/esm/usage/orm/input-types.d.ts +314 -19
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +79 -73
- package/modules/hooks/invalidation.js +182 -166
- package/modules/hooks/mutation-keys.d.ts +158 -146
- package/modules/hooks/mutation-keys.js +106 -96
- package/modules/hooks/mutations/index.d.ts +42 -39
- package/modules/hooks/mutations/index.js +42 -39
- package/modules/hooks/mutations/useCreateFunctionInvocationModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateFunctionInvocationModuleMutation.js +34 -0
- package/modules/hooks/mutations/useDeleteFunctionInvocationModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteFunctionInvocationModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdateFunctionInvocationModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateFunctionInvocationModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +28 -26
- package/modules/hooks/queries/index.js +28 -26
- package/modules/hooks/queries/useFunctionInvocationModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useFunctionInvocationModuleQuery.js +53 -0
- package/modules/hooks/queries/useFunctionInvocationModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useFunctionInvocationModulesQuery.js +38 -0
- package/modules/hooks/query-keys.d.ts +186 -172
- package/modules/hooks/query-keys.js +109 -101
- package/modules/orm/index.d.ts +28 -26
- package/modules/orm/index.js +28 -26
- package/modules/orm/input-types.d.ts +4485 -2514
- package/modules/orm/models/functionInvocationModule.d.ts +54 -0
- package/modules/orm/models/functionInvocationModule.js +104 -0
- package/modules/orm/models/index.d.ts +14 -13
- package/modules/orm/models/index.js +30 -28
- package/modules/schema-types.d.ts +2258 -1951
- package/modules/types.d.ts +296 -233
- package/objects/orm/input-types.d.ts +62 -0
- package/package.json +4 -4
- package/usage/orm/input-types.d.ts +314 -19
|
@@ -605,6 +605,68 @@ export interface ProvisionBucketInput {
|
|
|
605
605
|
*/
|
|
606
606
|
ownerId?: string;
|
|
607
607
|
}
|
|
608
|
+
/** An input for mutations affecting `Ref` */
|
|
609
|
+
export interface RefInput {
|
|
610
|
+
/** Unique ref identifier */
|
|
611
|
+
id?: string;
|
|
612
|
+
/** Ref name (e.g. HEAD, main) */
|
|
613
|
+
name: string;
|
|
614
|
+
/** Database scope for multi-tenant isolation */
|
|
615
|
+
databaseId: string;
|
|
616
|
+
/** Store this ref belongs to */
|
|
617
|
+
storeId: string;
|
|
618
|
+
/** Commit this ref points to */
|
|
619
|
+
commitId?: string;
|
|
620
|
+
}
|
|
621
|
+
/** An input for mutations affecting `Store` */
|
|
622
|
+
export interface StoreInput {
|
|
623
|
+
/** Unique store identifier */
|
|
624
|
+
id?: string;
|
|
625
|
+
/** Human-readable store name */
|
|
626
|
+
name: string;
|
|
627
|
+
/** Database scope for multi-tenant isolation */
|
|
628
|
+
databaseId: string;
|
|
629
|
+
/** Current root object hash of this store */
|
|
630
|
+
hash?: string;
|
|
631
|
+
/** Timestamp of store creation */
|
|
632
|
+
createdAt?: string;
|
|
633
|
+
}
|
|
634
|
+
/** An input for mutations affecting `Object` */
|
|
635
|
+
export interface ObjectInput {
|
|
636
|
+
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
637
|
+
id: string;
|
|
638
|
+
/** Database scope for multi-tenant isolation */
|
|
639
|
+
databaseId: string;
|
|
640
|
+
/** Ordered array of child object IDs */
|
|
641
|
+
kids?: string[];
|
|
642
|
+
/** Ordered array of child path names (parallel to kids) */
|
|
643
|
+
ktree?: string[];
|
|
644
|
+
/** Payload data for this object node */
|
|
645
|
+
data?: Record<string, unknown>;
|
|
646
|
+
/** Timestamp of object creation */
|
|
647
|
+
createdAt?: string;
|
|
648
|
+
}
|
|
649
|
+
/** An input for mutations affecting `Commit` */
|
|
650
|
+
export interface CommitInput {
|
|
651
|
+
/** Unique commit identifier */
|
|
652
|
+
id?: string;
|
|
653
|
+
/** Optional commit message */
|
|
654
|
+
message?: string;
|
|
655
|
+
/** Database scope for multi-tenant isolation */
|
|
656
|
+
databaseId: string;
|
|
657
|
+
/** Store this commit belongs to */
|
|
658
|
+
storeId: string;
|
|
659
|
+
/** Parent commit IDs (supports merge commits) */
|
|
660
|
+
parentIds?: string[];
|
|
661
|
+
/** User who authored the changes */
|
|
662
|
+
authorId?: string;
|
|
663
|
+
/** User who committed (may differ from author) */
|
|
664
|
+
committerId?: string;
|
|
665
|
+
/** Root object ID of the tree snapshot at this commit */
|
|
666
|
+
treeId?: string;
|
|
667
|
+
/** Commit timestamp */
|
|
668
|
+
date?: string;
|
|
669
|
+
}
|
|
608
670
|
export interface InitEmptyRepoPayload {
|
|
609
671
|
clientMutationId?: string | null;
|
|
610
672
|
}
|
|
@@ -1866,6 +1866,320 @@ export interface IntervalFilter {
|
|
|
1866
1866
|
/** Greater than or equal to the specified value. */
|
|
1867
1867
|
greaterThanOrEqualTo?: IntervalInput;
|
|
1868
1868
|
}
|
|
1869
|
+
/** An input for mutations affecting `AppLimitCapsDefault` */
|
|
1870
|
+
export interface AppLimitCapsDefaultInput {
|
|
1871
|
+
id?: string;
|
|
1872
|
+
/** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
|
|
1873
|
+
name: string;
|
|
1874
|
+
/** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
|
|
1875
|
+
max?: string;
|
|
1876
|
+
}
|
|
1877
|
+
/** An input for mutations affecting `OrgLimitCapsDefault` */
|
|
1878
|
+
export interface OrgLimitCapsDefaultInput {
|
|
1879
|
+
id?: string;
|
|
1880
|
+
/** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
|
|
1881
|
+
name: string;
|
|
1882
|
+
/** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
|
|
1883
|
+
max?: string;
|
|
1884
|
+
}
|
|
1885
|
+
/** An input for mutations affecting `AppLimitCap` */
|
|
1886
|
+
export interface AppLimitCapInput {
|
|
1887
|
+
id?: string;
|
|
1888
|
+
/** Name identifier of the cap being overridden */
|
|
1889
|
+
name: string;
|
|
1890
|
+
/** Entity this cap override applies to */
|
|
1891
|
+
entityId: string;
|
|
1892
|
+
/** Override cap value for this entity */
|
|
1893
|
+
max?: string;
|
|
1894
|
+
}
|
|
1895
|
+
/** An input for mutations affecting `OrgLimitCap` */
|
|
1896
|
+
export interface OrgLimitCapInput {
|
|
1897
|
+
id?: string;
|
|
1898
|
+
/** Name identifier of the cap being overridden */
|
|
1899
|
+
name: string;
|
|
1900
|
+
/** Entity this cap override applies to */
|
|
1901
|
+
entityId: string;
|
|
1902
|
+
/** Override cap value for this entity */
|
|
1903
|
+
max?: string;
|
|
1904
|
+
}
|
|
1905
|
+
/** An input for mutations affecting `AppLimitDefault` */
|
|
1906
|
+
export interface AppLimitDefaultInput {
|
|
1907
|
+
id?: string;
|
|
1908
|
+
/** Name identifier of the limit this default applies to */
|
|
1909
|
+
name: string;
|
|
1910
|
+
/** Default maximum usage allowed for this limit */
|
|
1911
|
+
max?: string;
|
|
1912
|
+
/** Default soft limit threshold for warnings; NULL means no soft limit */
|
|
1913
|
+
softMax?: string;
|
|
1914
|
+
}
|
|
1915
|
+
/** An input for mutations affecting `AppLimitCredit` */
|
|
1916
|
+
export interface AppLimitCreditInput {
|
|
1917
|
+
id?: string;
|
|
1918
|
+
/** FK to default_limits — which limit definition this credit applies to */
|
|
1919
|
+
defaultLimitId: string;
|
|
1920
|
+
/** User this credit is for; NULL for aggregate entity-level credits */
|
|
1921
|
+
actorId?: string;
|
|
1922
|
+
/** Number of credits to grant (positive to add, negative to revoke) */
|
|
1923
|
+
amount: string;
|
|
1924
|
+
/** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
|
|
1925
|
+
creditType?: string;
|
|
1926
|
+
/** Optional reason for the credit grant (promo code, admin grant, etc.) */
|
|
1927
|
+
reason?: string;
|
|
1928
|
+
}
|
|
1929
|
+
/** An input for mutations affecting `AppLimitCreditCodeItem` */
|
|
1930
|
+
export interface AppLimitCreditCodeItemInput {
|
|
1931
|
+
id?: string;
|
|
1932
|
+
/** FK to credit_codes — which code this item belongs to */
|
|
1933
|
+
creditCodeId: string;
|
|
1934
|
+
/** FK to default_limits — which limit this item grants credits for */
|
|
1935
|
+
defaultLimitId: string;
|
|
1936
|
+
/** Number of credits this item grants per redemption */
|
|
1937
|
+
amount: string;
|
|
1938
|
+
/** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
|
|
1939
|
+
creditType?: string;
|
|
1940
|
+
}
|
|
1941
|
+
/** An input for mutations affecting `AppLimitCreditRedemption` */
|
|
1942
|
+
export interface AppLimitCreditRedemptionInput {
|
|
1943
|
+
id?: string;
|
|
1944
|
+
/** FK to credit_codes — which code is being redeemed */
|
|
1945
|
+
creditCodeId: string;
|
|
1946
|
+
/** Entity receiving the credits (personal org user_id or org entity_id) */
|
|
1947
|
+
entityId: string;
|
|
1948
|
+
/** Resolved billable organization via get_organization_id */
|
|
1949
|
+
organizationId?: string;
|
|
1950
|
+
/** Membership prefix identifying the entity kind (org, team, app) */
|
|
1951
|
+
entityType?: string;
|
|
1952
|
+
}
|
|
1953
|
+
/** An input for mutations affecting `OrgLimitDefault` */
|
|
1954
|
+
export interface OrgLimitDefaultInput {
|
|
1955
|
+
id?: string;
|
|
1956
|
+
/** Name identifier of the limit this default applies to */
|
|
1957
|
+
name: string;
|
|
1958
|
+
/** Default maximum usage allowed for this limit */
|
|
1959
|
+
max?: string;
|
|
1960
|
+
/** Default soft limit threshold for warnings; NULL means no soft limit */
|
|
1961
|
+
softMax?: string;
|
|
1962
|
+
}
|
|
1963
|
+
/** An input for mutations affecting `OrgLimitCredit` */
|
|
1964
|
+
export interface OrgLimitCreditInput {
|
|
1965
|
+
id?: string;
|
|
1966
|
+
/** FK to default_limits — which limit definition this credit applies to */
|
|
1967
|
+
defaultLimitId: string;
|
|
1968
|
+
/** User this credit is for; NULL for aggregate entity-level credits */
|
|
1969
|
+
actorId?: string;
|
|
1970
|
+
/** Entity this credit applies to; NULL for actor-only credits */
|
|
1971
|
+
entityId?: string;
|
|
1972
|
+
/** Resolved billable organization via get_organization_id */
|
|
1973
|
+
organizationId?: string;
|
|
1974
|
+
/** Membership prefix identifying the entity kind (org, team, app) */
|
|
1975
|
+
entityType?: string;
|
|
1976
|
+
/** Number of credits to grant (positive to add, negative to revoke) */
|
|
1977
|
+
amount: string;
|
|
1978
|
+
/** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
|
|
1979
|
+
creditType?: string;
|
|
1980
|
+
/** Optional reason for the credit grant (promo code, admin grant, etc.) */
|
|
1981
|
+
reason?: string;
|
|
1982
|
+
}
|
|
1983
|
+
/** An input for mutations affecting `AppLimitWarning` */
|
|
1984
|
+
export interface AppLimitWarningInput {
|
|
1985
|
+
id?: string;
|
|
1986
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
1987
|
+
name: string;
|
|
1988
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
1989
|
+
warningType: string;
|
|
1990
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
1991
|
+
thresholdValue: string;
|
|
1992
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
1993
|
+
taskIdentifier: string;
|
|
1994
|
+
}
|
|
1995
|
+
/** An input for mutations affecting `OrgLimitWarning` */
|
|
1996
|
+
export interface OrgLimitWarningInput {
|
|
1997
|
+
id?: string;
|
|
1998
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
1999
|
+
name: string;
|
|
2000
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
2001
|
+
warningType: string;
|
|
2002
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
2003
|
+
thresholdValue: string;
|
|
2004
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
2005
|
+
taskIdentifier: string;
|
|
2006
|
+
/** Per-entity override (NULL = scope default for all entities) */
|
|
2007
|
+
entityId?: string;
|
|
2008
|
+
}
|
|
2009
|
+
/** An input for mutations affecting `AppLimitCreditCode` */
|
|
2010
|
+
export interface AppLimitCreditCodeInput {
|
|
2011
|
+
id?: string;
|
|
2012
|
+
/** Human-readable credit code (case-insensitive, unique) */
|
|
2013
|
+
code: string;
|
|
2014
|
+
/** Maximum total redemptions allowed; NULL for unlimited */
|
|
2015
|
+
maxRedemptions?: number;
|
|
2016
|
+
/** Current number of redemptions (incremented by trigger on credit_redemptions) */
|
|
2017
|
+
currentRedemptions?: number;
|
|
2018
|
+
/** Expiration timestamp; NULL for no expiry */
|
|
2019
|
+
expiresAt?: string;
|
|
2020
|
+
}
|
|
2021
|
+
/** An input for mutations affecting `AppLimitEvent` */
|
|
2022
|
+
export interface AppLimitEventInput {
|
|
2023
|
+
createdAt?: string;
|
|
2024
|
+
/** Unique identifier for each limit event */
|
|
2025
|
+
id?: string;
|
|
2026
|
+
/** Limit name this event applies to */
|
|
2027
|
+
name?: string;
|
|
2028
|
+
/** User who triggered this event; NULL for system/aggregate events */
|
|
2029
|
+
actorId?: string;
|
|
2030
|
+
/** Entity this event applies to; NULL for app-level events */
|
|
2031
|
+
entityId?: string;
|
|
2032
|
+
/** Resolved billable organization via get_organization_id; NULL for app-level events */
|
|
2033
|
+
organizationId?: string;
|
|
2034
|
+
/** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
|
|
2035
|
+
entityType?: string;
|
|
2036
|
+
/** Event type: inc, dec, check, modify, transfer, apply_plan, reset */
|
|
2037
|
+
eventType?: string;
|
|
2038
|
+
/** Change amount: positive for increment, negative for decrement */
|
|
2039
|
+
delta?: string;
|
|
2040
|
+
/** Usage count before this event */
|
|
2041
|
+
numBefore?: string;
|
|
2042
|
+
/** Usage count after this event */
|
|
2043
|
+
numAfter?: string;
|
|
2044
|
+
/** Max limit ceiling at the time of this event */
|
|
2045
|
+
maxAtEvent?: string;
|
|
2046
|
+
/** Optional reason or source: achievement, invite, plan_change, purchase, etc. */
|
|
2047
|
+
reason?: string;
|
|
2048
|
+
}
|
|
2049
|
+
/** An input for mutations affecting `OrgLimitEvent` */
|
|
2050
|
+
export interface OrgLimitEventInput {
|
|
2051
|
+
createdAt?: string;
|
|
2052
|
+
/** Unique identifier for each limit event */
|
|
2053
|
+
id?: string;
|
|
2054
|
+
/** Limit name this event applies to */
|
|
2055
|
+
name?: string;
|
|
2056
|
+
/** User who triggered this event; NULL for system/aggregate events */
|
|
2057
|
+
actorId?: string;
|
|
2058
|
+
/** Entity this event applies to; NULL for app-level events */
|
|
2059
|
+
entityId?: string;
|
|
2060
|
+
/** Resolved billable organization via get_organization_id; NULL for app-level events */
|
|
2061
|
+
organizationId?: string;
|
|
2062
|
+
/** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
|
|
2063
|
+
entityType?: string;
|
|
2064
|
+
/** Event type: inc, dec, check, modify, transfer, apply_plan, reset */
|
|
2065
|
+
eventType?: string;
|
|
2066
|
+
/** Change amount: positive for increment, negative for decrement */
|
|
2067
|
+
delta?: string;
|
|
2068
|
+
/** Usage count before this event */
|
|
2069
|
+
numBefore?: string;
|
|
2070
|
+
/** Usage count after this event */
|
|
2071
|
+
numAfter?: string;
|
|
2072
|
+
/** Max limit ceiling at the time of this event */
|
|
2073
|
+
maxAtEvent?: string;
|
|
2074
|
+
/** Optional reason or source: achievement, invite, plan_change, purchase, etc. */
|
|
2075
|
+
reason?: string;
|
|
2076
|
+
}
|
|
2077
|
+
/** An input for mutations affecting `AppLimit` */
|
|
2078
|
+
export interface AppLimitInput {
|
|
2079
|
+
id?: string;
|
|
2080
|
+
/** Name identifier of the limit being tracked */
|
|
2081
|
+
name?: string;
|
|
2082
|
+
/** User whose usage is being tracked against this limit */
|
|
2083
|
+
actorId: string;
|
|
2084
|
+
/** Current usage count for this actor and limit */
|
|
2085
|
+
num?: string;
|
|
2086
|
+
/** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
|
|
2087
|
+
max?: string;
|
|
2088
|
+
/** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
|
|
2089
|
+
softMax?: string;
|
|
2090
|
+
/** Start of the current metering window; NULL means no time window */
|
|
2091
|
+
windowStart?: string;
|
|
2092
|
+
/** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
|
|
2093
|
+
windowDuration?: IntervalInput;
|
|
2094
|
+
/** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
|
|
2095
|
+
planMax?: string;
|
|
2096
|
+
/** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
|
|
2097
|
+
purchasedCredits?: string;
|
|
2098
|
+
/** Temporary credits for the current billing window. Resets to 0 on window expiry. */
|
|
2099
|
+
periodCredits?: string;
|
|
2100
|
+
/** Resolved billable organization via get_organization_id */
|
|
2101
|
+
organizationId?: string;
|
|
2102
|
+
/** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
|
|
2103
|
+
entityType?: string;
|
|
2104
|
+
}
|
|
2105
|
+
/** An interval of time that has passed where the smallest distinct unit is a second. */
|
|
2106
|
+
export interface IntervalInput {
|
|
2107
|
+
/**
|
|
2108
|
+
* A quantity of seconds. This is the only non-integer field, as all the other
|
|
2109
|
+
* fields will dump their overflow into a smaller unit of time. Intervals don’t
|
|
2110
|
+
* have a smaller unit than seconds.
|
|
2111
|
+
*/
|
|
2112
|
+
seconds?: number;
|
|
2113
|
+
/** A quantity of minutes. */
|
|
2114
|
+
minutes?: number;
|
|
2115
|
+
/** A quantity of hours. */
|
|
2116
|
+
hours?: number;
|
|
2117
|
+
/** A quantity of days. */
|
|
2118
|
+
days?: number;
|
|
2119
|
+
/** A quantity of months. */
|
|
2120
|
+
months?: number;
|
|
2121
|
+
/** A quantity of years. */
|
|
2122
|
+
years?: number;
|
|
2123
|
+
}
|
|
2124
|
+
/** An input for mutations affecting `OrgLimitAggregate` */
|
|
2125
|
+
export interface OrgLimitAggregateInput {
|
|
2126
|
+
id?: string;
|
|
2127
|
+
/** Name identifier of the aggregate limit being tracked */
|
|
2128
|
+
name?: string;
|
|
2129
|
+
/** Entity (org) whose aggregate usage is being tracked */
|
|
2130
|
+
entityId: string;
|
|
2131
|
+
/** Current aggregate usage count for this entity and limit */
|
|
2132
|
+
num?: string;
|
|
2133
|
+
/** Maximum allowed aggregate usage; negative means unlimited */
|
|
2134
|
+
max?: string;
|
|
2135
|
+
/** Soft limit threshold for warnings; NULL means no soft limit */
|
|
2136
|
+
softMax?: string;
|
|
2137
|
+
/** Start of the current metering window; NULL means no time window */
|
|
2138
|
+
windowStart?: string;
|
|
2139
|
+
/** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
|
|
2140
|
+
windowDuration?: IntervalInput;
|
|
2141
|
+
/** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
|
|
2142
|
+
planMax?: string;
|
|
2143
|
+
/** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
|
|
2144
|
+
purchasedCredits?: string;
|
|
2145
|
+
/** Temporary credits for the current billing window. Resets to 0 on window expiry. */
|
|
2146
|
+
periodCredits?: string;
|
|
2147
|
+
/** Capacity reserved by child entities in budgeted allocation mode. Available = max - num - reserved. */
|
|
2148
|
+
reserved?: string;
|
|
2149
|
+
/** Resolved billable organization via get_organization_id */
|
|
2150
|
+
organizationId?: string;
|
|
2151
|
+
/** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
|
|
2152
|
+
entityType?: string;
|
|
2153
|
+
}
|
|
2154
|
+
/** An input for mutations affecting `OrgLimit` */
|
|
2155
|
+
export interface OrgLimitInput {
|
|
2156
|
+
id?: string;
|
|
2157
|
+
/** Name identifier of the limit being tracked */
|
|
2158
|
+
name?: string;
|
|
2159
|
+
/** User whose usage is being tracked against this limit */
|
|
2160
|
+
actorId: string;
|
|
2161
|
+
/** Current usage count for this actor and limit */
|
|
2162
|
+
num?: string;
|
|
2163
|
+
/** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
|
|
2164
|
+
max?: string;
|
|
2165
|
+
/** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
|
|
2166
|
+
softMax?: string;
|
|
2167
|
+
/** Start of the current metering window; NULL means no time window */
|
|
2168
|
+
windowStart?: string;
|
|
2169
|
+
/** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
|
|
2170
|
+
windowDuration?: IntervalInput;
|
|
2171
|
+
/** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
|
|
2172
|
+
planMax?: string;
|
|
2173
|
+
/** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
|
|
2174
|
+
purchasedCredits?: string;
|
|
2175
|
+
/** Temporary credits for the current billing window. Resets to 0 on window expiry. */
|
|
2176
|
+
periodCredits?: string;
|
|
2177
|
+
entityId: string;
|
|
2178
|
+
/** Resolved billable organization via get_organization_id */
|
|
2179
|
+
organizationId?: string;
|
|
2180
|
+
/** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
|
|
2181
|
+
entityType?: string;
|
|
2182
|
+
}
|
|
1869
2183
|
/** A filter to be used against `AppLimitCredit` object types. All fields are combined with a logical ‘and.’ */
|
|
1870
2184
|
export interface AppLimitCreditFilter {
|
|
1871
2185
|
/** Filter by the object’s `id` field. */
|
|
@@ -1962,25 +2276,6 @@ export interface AppLimitCreditRedemptionFilter {
|
|
|
1962
2276
|
/** Filter by the object’s `creditCode` relation. */
|
|
1963
2277
|
creditCode?: AppLimitCreditCodeFilter;
|
|
1964
2278
|
}
|
|
1965
|
-
/** An interval of time that has passed where the smallest distinct unit is a second. */
|
|
1966
|
-
export interface IntervalInput {
|
|
1967
|
-
/**
|
|
1968
|
-
* A quantity of seconds. This is the only non-integer field, as all the other
|
|
1969
|
-
* fields will dump their overflow into a smaller unit of time. Intervals don’t
|
|
1970
|
-
* have a smaller unit than seconds.
|
|
1971
|
-
*/
|
|
1972
|
-
seconds?: number;
|
|
1973
|
-
/** A quantity of minutes. */
|
|
1974
|
-
minutes?: number;
|
|
1975
|
-
/** A quantity of hours. */
|
|
1976
|
-
hours?: number;
|
|
1977
|
-
/** A quantity of days. */
|
|
1978
|
-
days?: number;
|
|
1979
|
-
/** A quantity of months. */
|
|
1980
|
-
months?: number;
|
|
1981
|
-
/** A quantity of years. */
|
|
1982
|
-
years?: number;
|
|
1983
|
-
}
|
|
1984
2279
|
/** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
|
|
1985
2280
|
export interface UUIDFilter {
|
|
1986
2281
|
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
package/modules/hooks/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: DefaultIdsModule, MembershipTypesModule, UserStateModule, SessionSecretsModule, ConfigSecretsOrgModule, DevicesModule, I18NModule, UserCredentialsModule, UserSettingsModule, ConfigSecretsUserModule, ConnectedAccountsModule, EmailsModule, PhoneNumbersModule, RateLimitsModule, UsersModule, WebauthnCredentialsModule, CryptoAddressesModule,
|
|
5
|
+
* Tables: DefaultIdsModule, MembershipTypesModule, UserStateModule, SessionSecretsModule, ConfigSecretsOrgModule, DevicesModule, I18NModule, UserCredentialsModule, UserSettingsModule, ConfigSecretsUserModule, ConnectedAccountsModule, EmailsModule, PhoneNumbersModule, RateLimitsModule, UsersModule, WebauthnCredentialsModule, CryptoAddressesModule, DenormalizedTableField, IdentityProvidersModule, RlsModule, Blueprint, BlueprintTemplate, BlueprintConstruction, CryptoAuthModule, SessionsModule, SecureTableProvision, MerkleStoreModule, GraphModule, DatabaseProvisionModule, ConfigSecretsModule, RateLimitMetersModule, RealtimeModule, WebauthnAuthModule, FunctionInvocationModule, FunctionModule, InvitesModule, NamespaceModule, ComputeLogModule, InferenceLogModule, StorageLogModule, TransferLogModule, PlansModule, BillingProviderModule, DbUsageModule, HierarchyModule, PermissionsModule, NotificationsModule, ProfilesModule, BillingModule, RelationProvision, UserAuthModule, AgentModule, LimitsModule, MembershipsModule, EntityTypeProvision, StorageModule, EventsModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
package/modules/hooks/index.js
CHANGED
|
@@ -18,7 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
* GraphQL SDK
|
|
19
19
|
* @generated by @constructive-io/graphql-codegen
|
|
20
20
|
*
|
|
21
|
-
* Tables: DefaultIdsModule, MembershipTypesModule, UserStateModule, SessionSecretsModule, ConfigSecretsOrgModule, DevicesModule, I18NModule, UserCredentialsModule, UserSettingsModule, ConfigSecretsUserModule, ConnectedAccountsModule, EmailsModule, PhoneNumbersModule, RateLimitsModule, UsersModule, WebauthnCredentialsModule, CryptoAddressesModule,
|
|
21
|
+
* Tables: DefaultIdsModule, MembershipTypesModule, UserStateModule, SessionSecretsModule, ConfigSecretsOrgModule, DevicesModule, I18NModule, UserCredentialsModule, UserSettingsModule, ConfigSecretsUserModule, ConnectedAccountsModule, EmailsModule, PhoneNumbersModule, RateLimitsModule, UsersModule, WebauthnCredentialsModule, CryptoAddressesModule, DenormalizedTableField, IdentityProvidersModule, RlsModule, Blueprint, BlueprintTemplate, BlueprintConstruction, CryptoAuthModule, SessionsModule, SecureTableProvision, MerkleStoreModule, GraphModule, DatabaseProvisionModule, ConfigSecretsModule, RateLimitMetersModule, RealtimeModule, WebauthnAuthModule, FunctionInvocationModule, FunctionModule, InvitesModule, NamespaceModule, ComputeLogModule, InferenceLogModule, StorageLogModule, TransferLogModule, PlansModule, BillingProviderModule, DbUsageModule, HierarchyModule, PermissionsModule, NotificationsModule, ProfilesModule, BillingModule, RelationProvision, UserAuthModule, AgentModule, LimitsModule, MembershipsModule, EntityTypeProvision, StorageModule, EventsModule
|
|
22
22
|
*
|
|
23
23
|
* Usage:
|
|
24
24
|
*
|