@constructive-io/react 0.6.4 → 0.6.5

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.
Files changed (65) hide show
  1. package/admin/hooks/queries/index.d.ts +1 -1
  2. package/admin/hooks/queries/index.js +1 -1
  3. package/admin/hooks/query-keys.d.ts +2 -2
  4. package/admin/hooks/query-keys.js +1 -1
  5. package/admin/orm/index.d.ts +5 -5
  6. package/admin/orm/query/index.d.ts +9 -9
  7. package/admin/orm/query/index.js +16 -16
  8. package/auth/orm/input-types.d.ts +0 -1
  9. package/auth/schema-types.d.ts +1 -3
  10. package/esm/admin/hooks/queries/index.d.ts +1 -1
  11. package/esm/admin/hooks/queries/index.js +1 -1
  12. package/esm/admin/hooks/query-keys.d.ts +2 -2
  13. package/esm/admin/hooks/query-keys.js +1 -1
  14. package/esm/admin/orm/index.d.ts +5 -5
  15. package/esm/admin/orm/query/index.d.ts +9 -9
  16. package/esm/admin/orm/query/index.js +16 -16
  17. package/esm/auth/orm/input-types.d.ts +0 -1
  18. package/esm/auth/schema-types.d.ts +1 -3
  19. package/esm/public/hooks/index.d.ts +1 -1
  20. package/esm/public/hooks/index.js +1 -1
  21. package/esm/public/hooks/invalidation.d.ts +18 -18
  22. package/esm/public/hooks/invalidation.js +49 -49
  23. package/esm/public/hooks/mutation-keys.d.ts +48 -48
  24. package/esm/public/hooks/mutation-keys.js +39 -39
  25. package/esm/public/hooks/mutations/index.d.ts +15 -15
  26. package/esm/public/hooks/mutations/index.js +15 -15
  27. package/esm/public/hooks/queries/index.d.ts +8 -8
  28. package/esm/public/hooks/queries/index.js +8 -8
  29. package/esm/public/hooks/query-keys.d.ts +46 -46
  30. package/esm/public/hooks/query-keys.js +26 -26
  31. package/esm/public/orm/index.d.ts +44 -44
  32. package/esm/public/orm/index.js +6 -6
  33. package/esm/public/orm/input-types.d.ts +570 -571
  34. package/esm/public/orm/models/index.d.ts +3 -3
  35. package/esm/public/orm/models/index.js +3 -3
  36. package/esm/public/orm/mutation/index.d.ts +46 -46
  37. package/esm/public/orm/mutation/index.js +66 -66
  38. package/esm/public/orm/query/index.d.ts +28 -28
  39. package/esm/public/orm/query/index.js +48 -48
  40. package/esm/public/schema-types.d.ts +752 -754
  41. package/esm/public/types.d.ts +36 -36
  42. package/package.json +2 -2
  43. package/public/hooks/index.d.ts +1 -1
  44. package/public/hooks/index.js +1 -1
  45. package/public/hooks/invalidation.d.ts +18 -18
  46. package/public/hooks/invalidation.js +48 -48
  47. package/public/hooks/mutation-keys.d.ts +48 -48
  48. package/public/hooks/mutation-keys.js +42 -42
  49. package/public/hooks/mutations/index.d.ts +15 -15
  50. package/public/hooks/mutations/index.js +15 -15
  51. package/public/hooks/queries/index.d.ts +8 -8
  52. package/public/hooks/queries/index.js +8 -8
  53. package/public/hooks/query-keys.d.ts +46 -46
  54. package/public/hooks/query-keys.js +29 -29
  55. package/public/orm/index.d.ts +44 -44
  56. package/public/orm/index.js +6 -6
  57. package/public/orm/input-types.d.ts +570 -571
  58. package/public/orm/models/index.d.ts +3 -3
  59. package/public/orm/models/index.js +9 -9
  60. package/public/orm/mutation/index.d.ts +46 -46
  61. package/public/orm/mutation/index.js +66 -66
  62. package/public/orm/query/index.d.ts +28 -28
  63. package/public/orm/query/index.js +48 -48
  64. package/public/schema-types.d.ts +752 -754
  65. package/public/types.d.ts +36 -36
package/public/types.d.ts CHANGED
@@ -22,6 +22,16 @@ export interface GetAllRecord {
22
22
  path: string[] | null;
23
23
  data: unknown | null;
24
24
  }
25
+ export interface Object {
26
+ hashUuid: string | null;
27
+ id: string | null;
28
+ databaseId: string | null;
29
+ kids: string[] | null;
30
+ ktree: string[] | null;
31
+ data: unknown | null;
32
+ frzn: boolean | null;
33
+ createdAt: string | null;
34
+ }
25
35
  export interface AppPermission {
26
36
  id: string | null;
27
37
  name: string | null;
@@ -40,16 +50,6 @@ export interface OrgPermission {
40
50
  descriptionTrgmSimilarity: number | null;
41
51
  searchScore: number | null;
42
52
  }
43
- export interface Object {
44
- hashUuid: string | null;
45
- id: string | null;
46
- databaseId: string | null;
47
- kids: string[] | null;
48
- ktree: string[] | null;
49
- data: unknown | null;
50
- frzn: boolean | null;
51
- createdAt: string | null;
52
- }
53
53
  export interface AppLevelRequirement {
54
54
  id: string | null;
55
55
  name: string | null;
@@ -1319,6 +1319,19 @@ export interface MembershipType {
1319
1319
  prefixTrgmSimilarity: number | null;
1320
1320
  searchScore: number | null;
1321
1321
  }
1322
+ export interface Commit {
1323
+ id: string | null;
1324
+ message: string | null;
1325
+ databaseId: string | null;
1326
+ storeId: string | null;
1327
+ parentIds: string[] | null;
1328
+ authorId: string | null;
1329
+ committerId: string | null;
1330
+ treeId: string | null;
1331
+ date: string | null;
1332
+ messageTrgmSimilarity: number | null;
1333
+ searchScore: number | null;
1334
+ }
1322
1335
  export interface AppMembershipDefault {
1323
1336
  id: string | null;
1324
1337
  createdAt: string | null;
@@ -1346,19 +1359,6 @@ export interface RlsModule {
1346
1359
  currentRoleIdTrgmSimilarity: number | null;
1347
1360
  searchScore: number | null;
1348
1361
  }
1349
- export interface Commit {
1350
- id: string | null;
1351
- message: string | null;
1352
- databaseId: string | null;
1353
- storeId: string | null;
1354
- parentIds: string[] | null;
1355
- authorId: string | null;
1356
- committerId: string | null;
1357
- treeId: string | null;
1358
- date: string | null;
1359
- messageTrgmSimilarity: number | null;
1360
- searchScore: number | null;
1361
- }
1362
1362
  export interface OrgMembershipDefault {
1363
1363
  id: string | null;
1364
1364
  createdAt: string | null;
@@ -1424,6 +1424,19 @@ export interface Email {
1424
1424
  createdAt: string | null;
1425
1425
  updatedAt: string | null;
1426
1426
  }
1427
+ export interface User {
1428
+ id: string | null;
1429
+ username: string | null;
1430
+ displayName: string | null;
1431
+ profilePicture: ConstructiveInternalTypeImage | null;
1432
+ searchTsv: string | null;
1433
+ type: number | null;
1434
+ createdAt: string | null;
1435
+ updatedAt: string | null;
1436
+ searchTsvRank: number | null;
1437
+ displayNameTrgmSimilarity: number | null;
1438
+ searchScore: number | null;
1439
+ }
1427
1440
  export interface AstMigration {
1428
1441
  id: number | null;
1429
1442
  databaseId: string | null;
@@ -1459,19 +1472,6 @@ export interface AppMembership {
1459
1472
  actorId: string | null;
1460
1473
  profileId: string | null;
1461
1474
  }
1462
- export interface User {
1463
- id: string | null;
1464
- username: string | null;
1465
- displayName: string | null;
1466
- profilePicture: ConstructiveInternalTypeImage | null;
1467
- searchTsv: string | null;
1468
- type: number | null;
1469
- createdAt: string | null;
1470
- updatedAt: string | null;
1471
- searchTsvRank: number | null;
1472
- displayNameTrgmSimilarity: number | null;
1473
- searchScore: number | null;
1474
- }
1475
1475
  export interface HierarchyModule {
1476
1476
  id: string | null;
1477
1477
  databaseId: string | null;