@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
package/esm/modules/types.d.ts
CHANGED
|
@@ -162,19 +162,6 @@ export interface CryptoAddressesModule {
|
|
|
162
162
|
apiName: string | null;
|
|
163
163
|
privateApiName: string | null;
|
|
164
164
|
}
|
|
165
|
-
export interface IdentityProvidersModule {
|
|
166
|
-
id: string | null;
|
|
167
|
-
databaseId: string | null;
|
|
168
|
-
schemaId: string | null;
|
|
169
|
-
privateSchemaId: string | null;
|
|
170
|
-
tableId: string | null;
|
|
171
|
-
tableName: string | null;
|
|
172
|
-
apiName: string | null;
|
|
173
|
-
privateApiName: string | null;
|
|
174
|
-
scope: string | null;
|
|
175
|
-
prefix: string | null;
|
|
176
|
-
entityTableId: string | null;
|
|
177
|
-
}
|
|
178
165
|
export interface DenormalizedTableField {
|
|
179
166
|
id: string | null;
|
|
180
167
|
databaseId: string | null;
|
|
@@ -189,6 +176,21 @@ export interface DenormalizedTableField {
|
|
|
189
176
|
funcName: string | null;
|
|
190
177
|
funcOrder: number | null;
|
|
191
178
|
}
|
|
179
|
+
export interface IdentityProvidersModule {
|
|
180
|
+
id: string | null;
|
|
181
|
+
databaseId: string | null;
|
|
182
|
+
schemaId: string | null;
|
|
183
|
+
privateSchemaId: string | null;
|
|
184
|
+
publicSchemaName: string | null;
|
|
185
|
+
privateSchemaName: string | null;
|
|
186
|
+
tableId: string | null;
|
|
187
|
+
tableName: string | null;
|
|
188
|
+
apiName: string | null;
|
|
189
|
+
privateApiName: string | null;
|
|
190
|
+
scope: string | null;
|
|
191
|
+
prefix: string | null;
|
|
192
|
+
entityTableId: string | null;
|
|
193
|
+
}
|
|
192
194
|
export interface RlsModule {
|
|
193
195
|
id: string | null;
|
|
194
196
|
databaseId: string | null;
|
|
@@ -269,22 +271,6 @@ export interface CryptoAuthModule {
|
|
|
269
271
|
signUpWithKey: string | null;
|
|
270
272
|
signInWithChallenge: string | null;
|
|
271
273
|
}
|
|
272
|
-
export interface RateLimitMetersModule {
|
|
273
|
-
id: string | null;
|
|
274
|
-
databaseId: string | null;
|
|
275
|
-
schemaId: string | null;
|
|
276
|
-
privateSchemaId: string | null;
|
|
277
|
-
rateLimitStateTableId: string | null;
|
|
278
|
-
rateLimitStateTableName: string | null;
|
|
279
|
-
rateLimitOverridesTableId: string | null;
|
|
280
|
-
rateLimitOverridesTableName: string | null;
|
|
281
|
-
rateWindowLimitsTableId: string | null;
|
|
282
|
-
rateWindowLimitsTableName: string | null;
|
|
283
|
-
checkRateLimitFunction: string | null;
|
|
284
|
-
prefix: string | null;
|
|
285
|
-
apiName: string | null;
|
|
286
|
-
privateApiName: string | null;
|
|
287
|
-
}
|
|
288
274
|
export interface SessionsModule {
|
|
289
275
|
id: string | null;
|
|
290
276
|
databaseId: string | null;
|
|
@@ -298,22 +284,18 @@ export interface SessionsModule {
|
|
|
298
284
|
sessionCredentialsTable: string | null;
|
|
299
285
|
authSettingsTable: string | null;
|
|
300
286
|
}
|
|
301
|
-
export interface
|
|
287
|
+
export interface SecureTableProvision {
|
|
302
288
|
id: string | null;
|
|
303
289
|
databaseId: string | null;
|
|
304
290
|
schemaId: string | null;
|
|
305
|
-
privateSchemaId: string | null;
|
|
306
291
|
tableId: string | null;
|
|
307
|
-
configDefinitionsTableId: string | null;
|
|
308
292
|
tableName: string | null;
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
entityTableId: string | null;
|
|
293
|
+
nodes: unknown | null;
|
|
294
|
+
useRls: boolean | null;
|
|
295
|
+
fields: unknown[] | null;
|
|
296
|
+
grants: unknown | null;
|
|
314
297
|
policies: unknown | null;
|
|
315
|
-
|
|
316
|
-
hasConfig: boolean | null;
|
|
298
|
+
outFields: string[] | null;
|
|
317
299
|
}
|
|
318
300
|
export interface MerkleStoreModule {
|
|
319
301
|
id: string | null;
|
|
@@ -330,6 +312,7 @@ export interface MerkleStoreModule {
|
|
|
330
312
|
apiName: string | null;
|
|
331
313
|
privateApiName: string | null;
|
|
332
314
|
scope: string | null;
|
|
315
|
+
functionPrefix: string | null;
|
|
333
316
|
createdAt: string | null;
|
|
334
317
|
}
|
|
335
318
|
export interface GraphModule {
|
|
@@ -350,39 +333,9 @@ export interface GraphModule {
|
|
|
350
333
|
entityTableId: string | null;
|
|
351
334
|
policies: unknown | null;
|
|
352
335
|
provisions: unknown | null;
|
|
336
|
+
defaultPermissions: string[] | null;
|
|
353
337
|
createdAt: string | null;
|
|
354
338
|
}
|
|
355
|
-
export interface SecureTableProvision {
|
|
356
|
-
id: string | null;
|
|
357
|
-
databaseId: string | null;
|
|
358
|
-
schemaId: string | null;
|
|
359
|
-
tableId: string | null;
|
|
360
|
-
tableName: string | null;
|
|
361
|
-
nodes: unknown | null;
|
|
362
|
-
useRls: boolean | null;
|
|
363
|
-
fields: unknown[] | null;
|
|
364
|
-
grants: unknown | null;
|
|
365
|
-
policies: unknown | null;
|
|
366
|
-
outFields: string[] | null;
|
|
367
|
-
}
|
|
368
|
-
export interface InvitesModule {
|
|
369
|
-
id: string | null;
|
|
370
|
-
databaseId: string | null;
|
|
371
|
-
schemaId: string | null;
|
|
372
|
-
privateSchemaId: string | null;
|
|
373
|
-
emailsTableId: string | null;
|
|
374
|
-
usersTableId: string | null;
|
|
375
|
-
invitesTableId: string | null;
|
|
376
|
-
claimedInvitesTableId: string | null;
|
|
377
|
-
invitesTableName: string | null;
|
|
378
|
-
claimedInvitesTableName: string | null;
|
|
379
|
-
submitInviteCodeFunction: string | null;
|
|
380
|
-
scope: string | null;
|
|
381
|
-
prefix: string | null;
|
|
382
|
-
entityTableId: string | null;
|
|
383
|
-
apiName: string | null;
|
|
384
|
-
privateApiName: string | null;
|
|
385
|
-
}
|
|
386
339
|
export interface DatabaseProvisionModule {
|
|
387
340
|
id: string | null;
|
|
388
341
|
databaseName: string | null;
|
|
@@ -399,17 +352,16 @@ export interface DatabaseProvisionModule {
|
|
|
399
352
|
updatedAt: string | null;
|
|
400
353
|
completedAt: string | null;
|
|
401
354
|
}
|
|
402
|
-
export interface
|
|
355
|
+
export interface ConfigSecretsModule {
|
|
403
356
|
id: string | null;
|
|
404
357
|
databaseId: string | null;
|
|
405
358
|
schemaId: string | null;
|
|
406
359
|
privateSchemaId: string | null;
|
|
407
360
|
publicSchemaName: string | null;
|
|
408
361
|
privateSchemaName: string | null;
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
namespaceEventsTableName: string | null;
|
|
362
|
+
tableId: string | null;
|
|
363
|
+
configDefinitionsTableId: string | null;
|
|
364
|
+
tableName: string | null;
|
|
413
365
|
apiName: string | null;
|
|
414
366
|
privateApiName: string | null;
|
|
415
367
|
scope: string | null;
|
|
@@ -417,6 +369,26 @@ export interface NamespaceModule {
|
|
|
417
369
|
entityTableId: string | null;
|
|
418
370
|
policies: unknown | null;
|
|
419
371
|
provisions: unknown | null;
|
|
372
|
+
hasConfig: boolean | null;
|
|
373
|
+
}
|
|
374
|
+
export interface RateLimitMetersModule {
|
|
375
|
+
id: string | null;
|
|
376
|
+
databaseId: string | null;
|
|
377
|
+
schemaId: string | null;
|
|
378
|
+
privateSchemaId: string | null;
|
|
379
|
+
publicSchemaName: string | null;
|
|
380
|
+
privateSchemaName: string | null;
|
|
381
|
+
rateLimitStateTableId: string | null;
|
|
382
|
+
rateLimitStateTableName: string | null;
|
|
383
|
+
rateLimitOverridesTableId: string | null;
|
|
384
|
+
rateLimitOverridesTableName: string | null;
|
|
385
|
+
rateWindowLimitsTableId: string | null;
|
|
386
|
+
rateWindowLimitsTableName: string | null;
|
|
387
|
+
checkRateLimitFunction: string | null;
|
|
388
|
+
prefix: string | null;
|
|
389
|
+
defaultPermissions: string[] | null;
|
|
390
|
+
apiName: string | null;
|
|
391
|
+
privateApiName: string | null;
|
|
420
392
|
}
|
|
421
393
|
export interface RealtimeModule {
|
|
422
394
|
id: string | null;
|
|
@@ -452,11 +424,93 @@ export interface WebauthnAuthModule {
|
|
|
452
424
|
residentKey: string | null;
|
|
453
425
|
challengeExpiry: string | null;
|
|
454
426
|
}
|
|
427
|
+
export interface FunctionInvocationModule {
|
|
428
|
+
id: string | null;
|
|
429
|
+
databaseId: string | null;
|
|
430
|
+
schemaId: string | null;
|
|
431
|
+
privateSchemaId: string | null;
|
|
432
|
+
publicSchemaName: string | null;
|
|
433
|
+
privateSchemaName: string | null;
|
|
434
|
+
invocationsTableId: string | null;
|
|
435
|
+
executionLogsTableId: string | null;
|
|
436
|
+
invocationsTableName: string | null;
|
|
437
|
+
executionLogsTableName: string | null;
|
|
438
|
+
apiName: string | null;
|
|
439
|
+
privateApiName: string | null;
|
|
440
|
+
scope: string | null;
|
|
441
|
+
prefix: string | null;
|
|
442
|
+
entityTableId: string | null;
|
|
443
|
+
policies: unknown | null;
|
|
444
|
+
provisions: unknown | null;
|
|
445
|
+
defaultPermissions: string[] | null;
|
|
446
|
+
}
|
|
447
|
+
export interface FunctionModule {
|
|
448
|
+
id: string | null;
|
|
449
|
+
databaseId: string | null;
|
|
450
|
+
schemaId: string | null;
|
|
451
|
+
privateSchemaId: string | null;
|
|
452
|
+
publicSchemaName: string | null;
|
|
453
|
+
privateSchemaName: string | null;
|
|
454
|
+
definitionsTableId: string | null;
|
|
455
|
+
secretDefinitionsTableId: string | null;
|
|
456
|
+
definitionsTableName: string | null;
|
|
457
|
+
secretDefinitionsTableName: string | null;
|
|
458
|
+
apiName: string | null;
|
|
459
|
+
privateApiName: string | null;
|
|
460
|
+
scope: string | null;
|
|
461
|
+
prefix: string | null;
|
|
462
|
+
entityTableId: string | null;
|
|
463
|
+
policies: unknown | null;
|
|
464
|
+
provisions: unknown | null;
|
|
465
|
+
defaultPermissions: string[] | null;
|
|
466
|
+
}
|
|
467
|
+
export interface InvitesModule {
|
|
468
|
+
id: string | null;
|
|
469
|
+
databaseId: string | null;
|
|
470
|
+
schemaId: string | null;
|
|
471
|
+
privateSchemaId: string | null;
|
|
472
|
+
publicSchemaName: string | null;
|
|
473
|
+
privateSchemaName: string | null;
|
|
474
|
+
emailsTableId: string | null;
|
|
475
|
+
usersTableId: string | null;
|
|
476
|
+
invitesTableId: string | null;
|
|
477
|
+
claimedInvitesTableId: string | null;
|
|
478
|
+
invitesTableName: string | null;
|
|
479
|
+
claimedInvitesTableName: string | null;
|
|
480
|
+
submitInviteCodeFunction: string | null;
|
|
481
|
+
scope: string | null;
|
|
482
|
+
prefix: string | null;
|
|
483
|
+
entityTableId: string | null;
|
|
484
|
+
apiName: string | null;
|
|
485
|
+
privateApiName: string | null;
|
|
486
|
+
}
|
|
487
|
+
export interface NamespaceModule {
|
|
488
|
+
id: string | null;
|
|
489
|
+
databaseId: string | null;
|
|
490
|
+
schemaId: string | null;
|
|
491
|
+
privateSchemaId: string | null;
|
|
492
|
+
publicSchemaName: string | null;
|
|
493
|
+
privateSchemaName: string | null;
|
|
494
|
+
namespacesTableId: string | null;
|
|
495
|
+
namespaceEventsTableId: string | null;
|
|
496
|
+
namespacesTableName: string | null;
|
|
497
|
+
namespaceEventsTableName: string | null;
|
|
498
|
+
apiName: string | null;
|
|
499
|
+
privateApiName: string | null;
|
|
500
|
+
scope: string | null;
|
|
501
|
+
prefix: string | null;
|
|
502
|
+
entityTableId: string | null;
|
|
503
|
+
policies: unknown | null;
|
|
504
|
+
provisions: unknown | null;
|
|
505
|
+
defaultPermissions: string[] | null;
|
|
506
|
+
}
|
|
455
507
|
export interface ComputeLogModule {
|
|
456
508
|
id: string | null;
|
|
457
509
|
databaseId: string | null;
|
|
458
510
|
schemaId: string | null;
|
|
459
511
|
privateSchemaId: string | null;
|
|
512
|
+
publicSchemaName: string | null;
|
|
513
|
+
privateSchemaName: string | null;
|
|
460
514
|
computeLogTableId: string | null;
|
|
461
515
|
computeLogTableName: string | null;
|
|
462
516
|
usageDailyTableId: string | null;
|
|
@@ -476,6 +530,8 @@ export interface InferenceLogModule {
|
|
|
476
530
|
databaseId: string | null;
|
|
477
531
|
schemaId: string | null;
|
|
478
532
|
privateSchemaId: string | null;
|
|
533
|
+
publicSchemaName: string | null;
|
|
534
|
+
privateSchemaName: string | null;
|
|
479
535
|
inferenceLogTableId: string | null;
|
|
480
536
|
inferenceLogTableName: string | null;
|
|
481
537
|
usageDailyTableId: string | null;
|
|
@@ -495,6 +551,8 @@ export interface StorageLogModule {
|
|
|
495
551
|
databaseId: string | null;
|
|
496
552
|
schemaId: string | null;
|
|
497
553
|
privateSchemaId: string | null;
|
|
554
|
+
publicSchemaName: string | null;
|
|
555
|
+
privateSchemaName: string | null;
|
|
498
556
|
storageLogTableId: string | null;
|
|
499
557
|
storageLogTableName: string | null;
|
|
500
558
|
usageDailyTableId: string | null;
|
|
@@ -514,6 +572,8 @@ export interface TransferLogModule {
|
|
|
514
572
|
databaseId: string | null;
|
|
515
573
|
schemaId: string | null;
|
|
516
574
|
privateSchemaId: string | null;
|
|
575
|
+
publicSchemaName: string | null;
|
|
576
|
+
privateSchemaName: string | null;
|
|
517
577
|
transferLogTableId: string | null;
|
|
518
578
|
transferLogTableName: string | null;
|
|
519
579
|
usageDailyTableId: string | null;
|
|
@@ -528,66 +588,74 @@ export interface TransferLogModule {
|
|
|
528
588
|
apiName: string | null;
|
|
529
589
|
privateApiName: string | null;
|
|
530
590
|
}
|
|
531
|
-
export interface
|
|
591
|
+
export interface PlansModule {
|
|
532
592
|
id: string | null;
|
|
533
593
|
databaseId: string | null;
|
|
534
594
|
schemaId: string | null;
|
|
535
595
|
privateSchemaId: string | null;
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
596
|
+
publicSchemaName: string | null;
|
|
597
|
+
privateSchemaName: string | null;
|
|
598
|
+
plansTableId: string | null;
|
|
599
|
+
plansTableName: string | null;
|
|
600
|
+
planLimitsTableId: string | null;
|
|
601
|
+
planLimitsTableName: string | null;
|
|
602
|
+
planPricingTableId: string | null;
|
|
603
|
+
planOverridesTableId: string | null;
|
|
604
|
+
planMeterLimitsTableId: string | null;
|
|
605
|
+
planCapsTableId: string | null;
|
|
606
|
+
applyPlanFunction: string | null;
|
|
607
|
+
applyPlanAggregateFunction: string | null;
|
|
608
|
+
applyBillingPlanFunction: string | null;
|
|
609
|
+
applyPlanCapsFunction: string | null;
|
|
548
610
|
prefix: string | null;
|
|
549
611
|
apiName: string | null;
|
|
550
612
|
privateApiName: string | null;
|
|
551
613
|
}
|
|
552
|
-
export interface
|
|
614
|
+
export interface BillingProviderModule {
|
|
553
615
|
id: string | null;
|
|
554
616
|
databaseId: string | null;
|
|
555
617
|
schemaId: string | null;
|
|
556
618
|
privateSchemaId: string | null;
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
619
|
+
provider: string | null;
|
|
620
|
+
productsTableId: string | null;
|
|
621
|
+
pricesTableId: string | null;
|
|
622
|
+
subscriptionsTableId: string | null;
|
|
623
|
+
billingCustomersTableId: string | null;
|
|
624
|
+
billingCustomersTableName: string | null;
|
|
625
|
+
billingProductsTableId: string | null;
|
|
626
|
+
billingProductsTableName: string | null;
|
|
627
|
+
billingPricesTableId: string | null;
|
|
628
|
+
billingPricesTableName: string | null;
|
|
629
|
+
billingSubscriptionsTableId: string | null;
|
|
630
|
+
billingSubscriptionsTableName: string | null;
|
|
631
|
+
billingWebhookEventsTableId: string | null;
|
|
632
|
+
billingWebhookEventsTableName: string | null;
|
|
633
|
+
processBillingEventFunction: string | null;
|
|
634
|
+
prefix: string | null;
|
|
570
635
|
apiName: string | null;
|
|
571
636
|
privateApiName: string | null;
|
|
572
637
|
}
|
|
573
|
-
export interface
|
|
638
|
+
export interface DbUsageModule {
|
|
574
639
|
id: string | null;
|
|
575
640
|
databaseId: string | null;
|
|
576
641
|
schemaId: string | null;
|
|
577
642
|
privateSchemaId: string | null;
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
643
|
+
publicSchemaName: string | null;
|
|
644
|
+
privateSchemaName: string | null;
|
|
645
|
+
tableStatsLogTableId: string | null;
|
|
646
|
+
tableStatsLogTableName: string | null;
|
|
647
|
+
tableStatsDailyTableId: string | null;
|
|
648
|
+
tableStatsDailyTableName: string | null;
|
|
649
|
+
queryStatsLogTableId: string | null;
|
|
650
|
+
queryStatsLogTableName: string | null;
|
|
651
|
+
queryStatsDailyTableId: string | null;
|
|
652
|
+
queryStatsDailyTableName: string | null;
|
|
653
|
+
interval: string | null;
|
|
654
|
+
retention: string | null;
|
|
655
|
+
premake: number | null;
|
|
656
|
+
scope: string | null;
|
|
590
657
|
prefix: string | null;
|
|
658
|
+
defaultPermissions: string[] | null;
|
|
591
659
|
apiName: string | null;
|
|
592
660
|
privateApiName: string | null;
|
|
593
661
|
}
|
|
@@ -612,53 +680,54 @@ export interface HierarchyModule {
|
|
|
612
680
|
getSubordinatesFunction: string | null;
|
|
613
681
|
getManagersFunction: string | null;
|
|
614
682
|
isManagerOfFunction: string | null;
|
|
683
|
+
defaultPermissions: string[] | null;
|
|
615
684
|
createdAt: string | null;
|
|
616
685
|
}
|
|
617
|
-
export interface
|
|
686
|
+
export interface PermissionsModule {
|
|
618
687
|
id: string | null;
|
|
619
688
|
databaseId: string | null;
|
|
620
689
|
schemaId: string | null;
|
|
621
690
|
privateSchemaId: string | null;
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
meterCreditsTableId: string | null;
|
|
631
|
-
meterCreditsTableName: string | null;
|
|
632
|
-
meterSourcesTableId: string | null;
|
|
633
|
-
meterSourcesTableName: string | null;
|
|
634
|
-
meterDefaultsTableId: string | null;
|
|
635
|
-
meterDefaultsTableName: string | null;
|
|
636
|
-
recordUsageFunction: string | null;
|
|
691
|
+
publicSchemaName: string | null;
|
|
692
|
+
privateSchemaName: string | null;
|
|
693
|
+
tableId: string | null;
|
|
694
|
+
tableName: string | null;
|
|
695
|
+
defaultTableId: string | null;
|
|
696
|
+
defaultTableName: string | null;
|
|
697
|
+
bitlen: number | null;
|
|
698
|
+
scope: string | null;
|
|
637
699
|
prefix: string | null;
|
|
700
|
+
entityTableId: string | null;
|
|
701
|
+
actorTableId: string | null;
|
|
702
|
+
getPaddedMask: string | null;
|
|
703
|
+
getMask: string | null;
|
|
704
|
+
getByMask: string | null;
|
|
705
|
+
getMaskByName: string | null;
|
|
638
706
|
apiName: string | null;
|
|
639
707
|
privateApiName: string | null;
|
|
640
708
|
}
|
|
641
|
-
export interface
|
|
709
|
+
export interface NotificationsModule {
|
|
642
710
|
id: string | null;
|
|
643
711
|
databaseId: string | null;
|
|
644
712
|
schemaId: string | null;
|
|
645
713
|
privateSchemaId: string | null;
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
714
|
+
publicSchemaName: string | null;
|
|
715
|
+
privateSchemaName: string | null;
|
|
716
|
+
notificationsTableId: string | null;
|
|
717
|
+
readStateTableId: string | null;
|
|
718
|
+
preferencesTableId: string | null;
|
|
719
|
+
channelsTableId: string | null;
|
|
720
|
+
deliveryLogTableId: string | null;
|
|
721
|
+
suppressionsTableId: string | null;
|
|
722
|
+
ownerTableId: string | null;
|
|
723
|
+
userSettingsTableId: string | null;
|
|
724
|
+
organizationSettingsTableId: string | null;
|
|
725
|
+
hasChannels: boolean | null;
|
|
726
|
+
hasPreferences: boolean | null;
|
|
727
|
+
hasSettingsExtension: boolean | null;
|
|
728
|
+
hasDigestMetadata: boolean | null;
|
|
729
|
+
hasSubscriptions: boolean | null;
|
|
730
|
+
defaultPermissions: string[] | null;
|
|
662
731
|
apiName: string | null;
|
|
663
732
|
privateApiName: string | null;
|
|
664
733
|
}
|
|
@@ -667,6 +736,8 @@ export interface ProfilesModule {
|
|
|
667
736
|
databaseId: string | null;
|
|
668
737
|
schemaId: string | null;
|
|
669
738
|
privateSchemaId: string | null;
|
|
739
|
+
publicSchemaName: string | null;
|
|
740
|
+
privateSchemaName: string | null;
|
|
670
741
|
tableId: string | null;
|
|
671
742
|
tableName: string | null;
|
|
672
743
|
profilePermissionsTableId: string | null;
|
|
@@ -686,24 +757,30 @@ export interface ProfilesModule {
|
|
|
686
757
|
apiName: string | null;
|
|
687
758
|
privateApiName: string | null;
|
|
688
759
|
}
|
|
689
|
-
export interface
|
|
760
|
+
export interface BillingModule {
|
|
690
761
|
id: string | null;
|
|
691
762
|
databaseId: string | null;
|
|
692
763
|
schemaId: string | null;
|
|
693
764
|
privateSchemaId: string | null;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
765
|
+
publicSchemaName: string | null;
|
|
766
|
+
privateSchemaName: string | null;
|
|
767
|
+
metersTableId: string | null;
|
|
768
|
+
metersTableName: string | null;
|
|
769
|
+
planSubscriptionsTableId: string | null;
|
|
770
|
+
planSubscriptionsTableName: string | null;
|
|
771
|
+
ledgerTableId: string | null;
|
|
772
|
+
ledgerTableName: string | null;
|
|
773
|
+
balancesTableId: string | null;
|
|
774
|
+
balancesTableName: string | null;
|
|
775
|
+
meterCreditsTableId: string | null;
|
|
776
|
+
meterCreditsTableName: string | null;
|
|
777
|
+
meterSourcesTableId: string | null;
|
|
778
|
+
meterSourcesTableName: string | null;
|
|
779
|
+
meterDefaultsTableId: string | null;
|
|
780
|
+
meterDefaultsTableName: string | null;
|
|
781
|
+
recordUsageFunction: string | null;
|
|
700
782
|
prefix: string | null;
|
|
701
|
-
|
|
702
|
-
actorTableId: string | null;
|
|
703
|
-
getPaddedMask: string | null;
|
|
704
|
-
getMask: string | null;
|
|
705
|
-
getByMask: string | null;
|
|
706
|
-
getMaskByName: string | null;
|
|
783
|
+
defaultPermissions: string[] | null;
|
|
707
784
|
apiName: string | null;
|
|
708
785
|
privateApiName: string | null;
|
|
709
786
|
}
|
|
@@ -733,34 +810,6 @@ export interface RelationProvision {
|
|
|
733
810
|
outSourceFieldId: string | null;
|
|
734
811
|
outTargetFieldId: string | null;
|
|
735
812
|
}
|
|
736
|
-
export interface FunctionModule {
|
|
737
|
-
id: string | null;
|
|
738
|
-
databaseId: string | null;
|
|
739
|
-
schemaId: string | null;
|
|
740
|
-
privateSchemaId: string | null;
|
|
741
|
-
publicSchemaName: string | null;
|
|
742
|
-
privateSchemaName: string | null;
|
|
743
|
-
definitionsTableId: string | null;
|
|
744
|
-
invocationsTableId: string | null;
|
|
745
|
-
executionLogsTableId: string | null;
|
|
746
|
-
secretDefinitionsTableId: string | null;
|
|
747
|
-
requirementsTableId: string | null;
|
|
748
|
-
configDefinitionsTableId: string | null;
|
|
749
|
-
configRequirementsTableId: string | null;
|
|
750
|
-
definitionsTableName: string | null;
|
|
751
|
-
invocationsTableName: string | null;
|
|
752
|
-
executionLogsTableName: string | null;
|
|
753
|
-
secretDefinitionsTableName: string | null;
|
|
754
|
-
requirementsTableName: string | null;
|
|
755
|
-
configRequirementsTableName: string | null;
|
|
756
|
-
apiName: string | null;
|
|
757
|
-
privateApiName: string | null;
|
|
758
|
-
scope: string | null;
|
|
759
|
-
prefix: string | null;
|
|
760
|
-
entityTableId: string | null;
|
|
761
|
-
policies: unknown | null;
|
|
762
|
-
provisions: unknown | null;
|
|
763
|
-
}
|
|
764
813
|
export interface UserAuthModule {
|
|
765
814
|
id: string | null;
|
|
766
815
|
databaseId: string | null;
|
|
@@ -796,6 +845,8 @@ export interface AgentModule {
|
|
|
796
845
|
databaseId: string | null;
|
|
797
846
|
schemaId: string | null;
|
|
798
847
|
privateSchemaId: string | null;
|
|
848
|
+
publicSchemaName: string | null;
|
|
849
|
+
privateSchemaName: string | null;
|
|
799
850
|
threadTableId: string | null;
|
|
800
851
|
messageTableId: string | null;
|
|
801
852
|
taskTableId: string | null;
|
|
@@ -815,6 +866,7 @@ export interface AgentModule {
|
|
|
815
866
|
hasPlans: boolean | null;
|
|
816
867
|
hasResources: boolean | null;
|
|
817
868
|
hasAgents: boolean | null;
|
|
869
|
+
shared: boolean | null;
|
|
818
870
|
apiName: string | null;
|
|
819
871
|
privateApiName: string | null;
|
|
820
872
|
scope: string | null;
|
|
@@ -823,12 +875,15 @@ export interface AgentModule {
|
|
|
823
875
|
policies: unknown | null;
|
|
824
876
|
resources: unknown | null;
|
|
825
877
|
provisions: unknown | null;
|
|
878
|
+
defaultPermissions: string[] | null;
|
|
826
879
|
}
|
|
827
880
|
export interface LimitsModule {
|
|
828
881
|
id: string | null;
|
|
829
882
|
databaseId: string | null;
|
|
830
883
|
schemaId: string | null;
|
|
831
884
|
privateSchemaId: string | null;
|
|
885
|
+
publicSchemaName: string | null;
|
|
886
|
+
privateSchemaName: string | null;
|
|
832
887
|
tableId: string | null;
|
|
833
888
|
tableName: string | null;
|
|
834
889
|
defaultTableId: string | null;
|
|
@@ -865,6 +920,8 @@ export interface MembershipsModule {
|
|
|
865
920
|
databaseId: string | null;
|
|
866
921
|
schemaId: string | null;
|
|
867
922
|
privateSchemaId: string | null;
|
|
923
|
+
publicSchemaName: string | null;
|
|
924
|
+
privateSchemaName: string | null;
|
|
868
925
|
membershipsTableId: string | null;
|
|
869
926
|
membershipsTableName: string | null;
|
|
870
927
|
membersTableId: string | null;
|
|
@@ -896,14 +953,60 @@ export interface MembershipsModule {
|
|
|
896
953
|
entityIdsByPerm: string | null;
|
|
897
954
|
entityIdsFunction: string | null;
|
|
898
955
|
memberProfilesTableId: string | null;
|
|
956
|
+
permissionDefaultPermissionsTableId: string | null;
|
|
957
|
+
permissionDefaultGrantsTableId: string | null;
|
|
899
958
|
apiName: string | null;
|
|
900
959
|
privateApiName: string | null;
|
|
901
960
|
}
|
|
961
|
+
export interface EntityTypeProvision {
|
|
962
|
+
id: string | null;
|
|
963
|
+
databaseId: string | null;
|
|
964
|
+
name: string | null;
|
|
965
|
+
prefix: string | null;
|
|
966
|
+
description: string | null;
|
|
967
|
+
parentEntity: string | null;
|
|
968
|
+
tableName: string | null;
|
|
969
|
+
isVisible: boolean | null;
|
|
970
|
+
hasLimits: boolean | null;
|
|
971
|
+
hasProfiles: boolean | null;
|
|
972
|
+
hasLevels: boolean | null;
|
|
973
|
+
hasInvites: boolean | null;
|
|
974
|
+
hasInviteAchievements: boolean | null;
|
|
975
|
+
storage: unknown | null;
|
|
976
|
+
namespaces: unknown | null;
|
|
977
|
+
functions: unknown | null;
|
|
978
|
+
graphs: unknown | null;
|
|
979
|
+
agents: unknown | null;
|
|
980
|
+
skipEntityPolicies: boolean | null;
|
|
981
|
+
tableProvision: unknown | null;
|
|
982
|
+
outMembershipType: number | null;
|
|
983
|
+
outEntityTableId: string | null;
|
|
984
|
+
outEntityTableName: string | null;
|
|
985
|
+
outInstalledModules: string[] | null;
|
|
986
|
+
outStorageModuleId: string | null;
|
|
987
|
+
outBucketsTableId: string | null;
|
|
988
|
+
outFilesTableId: string | null;
|
|
989
|
+
outPathSharesTableId: string | null;
|
|
990
|
+
outInvitesModuleId: string | null;
|
|
991
|
+
outNamespaceModuleId: string | null;
|
|
992
|
+
outNamespacesTableId: string | null;
|
|
993
|
+
outNamespaceEventsTableId: string | null;
|
|
994
|
+
outFunctionModuleId: string | null;
|
|
995
|
+
outDefinitionsTableId: string | null;
|
|
996
|
+
outInvocationsTableId: string | null;
|
|
997
|
+
outExecutionLogsTableId: string | null;
|
|
998
|
+
outSecretDefinitionsTableId: string | null;
|
|
999
|
+
outGraphModuleId: string | null;
|
|
1000
|
+
outGraphsTableId: string | null;
|
|
1001
|
+
outAgentModuleId: string | null;
|
|
1002
|
+
}
|
|
902
1003
|
export interface StorageModule {
|
|
903
1004
|
id: string | null;
|
|
904
1005
|
databaseId: string | null;
|
|
905
1006
|
schemaId: string | null;
|
|
906
1007
|
privateSchemaId: string | null;
|
|
1008
|
+
publicSchemaName: string | null;
|
|
1009
|
+
privateSchemaName: string | null;
|
|
907
1010
|
bucketsTableId: string | null;
|
|
908
1011
|
filesTableId: string | null;
|
|
909
1012
|
bucketsTableName: string | null;
|
|
@@ -934,6 +1037,7 @@ export interface StorageModule {
|
|
|
934
1037
|
hasConfirmUpload: boolean | null;
|
|
935
1038
|
confirmUploadDelay: string | null;
|
|
936
1039
|
fileEventsTableId: string | null;
|
|
1040
|
+
defaultPermissions: string[] | null;
|
|
937
1041
|
apiName: string | null;
|
|
938
1042
|
privateApiName: string | null;
|
|
939
1043
|
}
|
|
@@ -942,6 +1046,8 @@ export interface EventsModule {
|
|
|
942
1046
|
databaseId: string | null;
|
|
943
1047
|
schemaId: string | null;
|
|
944
1048
|
privateSchemaId: string | null;
|
|
1049
|
+
publicSchemaName: string | null;
|
|
1050
|
+
privateSchemaName: string | null;
|
|
945
1051
|
eventsTableId: string | null;
|
|
946
1052
|
eventsTableName: string | null;
|
|
947
1053
|
eventAggregatesTableId: string | null;
|
|
@@ -977,53 +1083,10 @@ export interface EventsModule {
|
|
|
977
1083
|
prefix: string | null;
|
|
978
1084
|
entityTableId: string | null;
|
|
979
1085
|
actorTableId: string | null;
|
|
1086
|
+
defaultPermissions: string[] | null;
|
|
980
1087
|
apiName: string | null;
|
|
981
1088
|
privateApiName: string | null;
|
|
982
1089
|
}
|
|
983
|
-
export interface EntityTypeProvision {
|
|
984
|
-
id: string | null;
|
|
985
|
-
databaseId: string | null;
|
|
986
|
-
name: string | null;
|
|
987
|
-
prefix: string | null;
|
|
988
|
-
description: string | null;
|
|
989
|
-
parentEntity: string | null;
|
|
990
|
-
tableName: string | null;
|
|
991
|
-
isVisible: boolean | null;
|
|
992
|
-
hasLimits: boolean | null;
|
|
993
|
-
hasProfiles: boolean | null;
|
|
994
|
-
hasLevels: boolean | null;
|
|
995
|
-
hasInvites: boolean | null;
|
|
996
|
-
hasInviteAchievements: boolean | null;
|
|
997
|
-
storage: unknown | null;
|
|
998
|
-
namespaces: unknown | null;
|
|
999
|
-
functions: unknown | null;
|
|
1000
|
-
graphs: unknown | null;
|
|
1001
|
-
agents: unknown | null;
|
|
1002
|
-
skipEntityPolicies: boolean | null;
|
|
1003
|
-
tableProvision: unknown | null;
|
|
1004
|
-
outMembershipType: number | null;
|
|
1005
|
-
outEntityTableId: string | null;
|
|
1006
|
-
outEntityTableName: string | null;
|
|
1007
|
-
outInstalledModules: string[] | null;
|
|
1008
|
-
outStorageModuleId: string | null;
|
|
1009
|
-
outBucketsTableId: string | null;
|
|
1010
|
-
outFilesTableId: string | null;
|
|
1011
|
-
outPathSharesTableId: string | null;
|
|
1012
|
-
outInvitesModuleId: string | null;
|
|
1013
|
-
outNamespaceModuleId: string | null;
|
|
1014
|
-
outNamespacesTableId: string | null;
|
|
1015
|
-
outNamespaceEventsTableId: string | null;
|
|
1016
|
-
outFunctionModuleId: string | null;
|
|
1017
|
-
outDefinitionsTableId: string | null;
|
|
1018
|
-
outInvocationsTableId: string | null;
|
|
1019
|
-
outExecutionLogsTableId: string | null;
|
|
1020
|
-
outSecretDefinitionsTableId: string | null;
|
|
1021
|
-
outRequirementsTableId: string | null;
|
|
1022
|
-
outConfigRequirementsTableId: string | null;
|
|
1023
|
-
outGraphModuleId: string | null;
|
|
1024
|
-
outGraphsTableId: string | null;
|
|
1025
|
-
outAgentModuleId: string | null;
|
|
1026
|
-
}
|
|
1027
1090
|
export interface StringFilter {
|
|
1028
1091
|
isNull?: boolean;
|
|
1029
1092
|
equalTo?: string;
|