@constructive-io/react 0.14.0 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/orm/client.js +1 -3
- package/admin/orm/input-types.d.ts +3 -0
- package/admin/schema-types.d.ts +2 -0
- package/auth/orm/client.js +1 -3
- package/auth/orm/input-types.d.ts +3 -0
- package/auth/schema-types.d.ts +2 -0
- package/esm/admin/orm/client.js +1 -3
- package/esm/admin/orm/input-types.d.ts +3 -0
- package/esm/admin/schema-types.d.ts +2 -0
- package/esm/auth/orm/client.js +1 -3
- package/esm/auth/orm/input-types.d.ts +3 -0
- package/esm/auth/schema-types.d.ts +2 -0
- package/esm/objects/orm/client.js +1 -3
- package/esm/objects/orm/input-types.d.ts +3 -0
- package/esm/objects/schema-types.d.ts +2 -0
- package/esm/public/orm/client.js +1 -3
- package/esm/public/orm/input-types.d.ts +67 -12
- package/esm/public/schema-types.d.ts +241 -172
- package/esm/public/types.d.ts +4 -1
- package/objects/orm/client.js +1 -3
- package/objects/orm/input-types.d.ts +3 -0
- package/objects/schema-types.d.ts +2 -0
- package/package.json +4 -4
- package/public/orm/client.js +1 -3
- package/public/orm/input-types.d.ts +67 -12
- package/public/schema-types.d.ts +241 -172
- package/public/types.d.ts +4 -1
package/public/types.d.ts
CHANGED
|
@@ -878,7 +878,8 @@ export interface StorageModule {
|
|
|
878
878
|
filesTableName: string | null;
|
|
879
879
|
uploadRequestsTableName: string | null;
|
|
880
880
|
membershipType: number | null;
|
|
881
|
-
policies:
|
|
881
|
+
policies: unknown | null;
|
|
882
|
+
skipDefaultPolicyTables: string[] | null;
|
|
882
883
|
entityTableId: string | null;
|
|
883
884
|
endpoint: string | null;
|
|
884
885
|
publicUrlPrefix: string | null;
|
|
@@ -903,6 +904,7 @@ export interface EntityTypeProvision {
|
|
|
903
904
|
hasProfiles: boolean | null;
|
|
904
905
|
hasLevels: boolean | null;
|
|
905
906
|
hasStorage: boolean | null;
|
|
907
|
+
hasInvites: boolean | null;
|
|
906
908
|
storageConfig: unknown | null;
|
|
907
909
|
skipEntityPolicies: boolean | null;
|
|
908
910
|
tableProvision: unknown | null;
|
|
@@ -913,6 +915,7 @@ export interface EntityTypeProvision {
|
|
|
913
915
|
outStorageModuleId: string | null;
|
|
914
916
|
outBucketsTableId: string | null;
|
|
915
917
|
outFilesTableId: string | null;
|
|
918
|
+
outInvitesModuleId: string | null;
|
|
916
919
|
}
|
|
917
920
|
export interface WebauthnCredentialsModule {
|
|
918
921
|
id: string | null;
|