@constructive-io/react 0.12.10 → 0.12.12
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/orm/client.d.ts +2 -2
- package/admin/orm/query-builder.js +10 -10
- package/auth/orm/client.d.ts +2 -2
- package/auth/orm/query-builder.js +10 -10
- package/esm/admin/orm/client.d.ts +2 -2
- package/esm/admin/orm/query-builder.js +1 -1
- package/esm/auth/orm/client.d.ts +2 -2
- package/esm/auth/orm/query-builder.js +1 -1
- package/esm/objects/orm/client.d.ts +2 -2
- package/esm/objects/orm/query-builder.js +1 -1
- package/esm/public/orm/client.d.ts +2 -2
- package/esm/public/orm/input-types.d.ts +69 -17
- package/esm/public/orm/query-builder.js +1 -1
- package/esm/public/schema-types.d.ts +107 -81
- package/esm/public/types.d.ts +6 -1
- package/objects/orm/client.d.ts +2 -2
- package/objects/orm/query-builder.js +10 -10
- package/package.json +4 -3
- package/public/orm/client.d.ts +2 -2
- package/public/orm/input-types.d.ts +69 -17
- package/public/orm/query-builder.js +10 -10
- package/public/schema-types.d.ts +107 -81
- package/public/types.d.ts +6 -1
package/public/types.d.ts
CHANGED
|
@@ -947,13 +947,18 @@ export interface NotificationsModule {
|
|
|
947
947
|
schemaId: string | null;
|
|
948
948
|
privateSchemaId: string | null;
|
|
949
949
|
notificationsTableId: string | null;
|
|
950
|
-
|
|
950
|
+
readStateTableId: string | null;
|
|
951
951
|
preferencesTableId: string | null;
|
|
952
952
|
channelsTableId: string | null;
|
|
953
953
|
deliveryLogTableId: string | null;
|
|
954
954
|
ownerTableId: string | null;
|
|
955
955
|
userSettingsTableId: string | null;
|
|
956
956
|
organizationSettingsTableId: string | null;
|
|
957
|
+
hasChannels: boolean | null;
|
|
958
|
+
hasPreferences: boolean | null;
|
|
959
|
+
hasSettingsExtension: boolean | null;
|
|
960
|
+
hasDigestMetadata: boolean | null;
|
|
961
|
+
hasSubscriptions: boolean | null;
|
|
957
962
|
}
|
|
958
963
|
export interface DatabaseProvisionModule {
|
|
959
964
|
id: string | null;
|