@constructive-io/sdk 1.11.2 → 1.11.4

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 (161) hide show
  1. package/admin/orm/client.js +11 -1
  2. package/agent/orm/client.js +11 -1
  3. package/agent/orm/input-types.d.ts +0 -3
  4. package/api/orm/client.js +11 -1
  5. package/api/orm/index.d.ts +66 -4
  6. package/api/orm/index.js +36 -4
  7. package/api/orm/input-types.d.ts +4946 -630
  8. package/api/orm/input-types.js +34 -6
  9. package/api/orm/models/apis.d.ts +54 -0
  10. package/api/orm/models/{api.js → apis.js} +27 -27
  11. package/api/orm/models/derive.d.ts +54 -0
  12. package/api/orm/models/derive.js +104 -0
  13. package/api/orm/models/fieldBehavior.d.ts +54 -0
  14. package/api/orm/models/fieldBehavior.js +104 -0
  15. package/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
  16. package/api/orm/models/foreignKeyConstraintBehavior.js +104 -0
  17. package/api/orm/models/index.d.ts +18 -2
  18. package/api/orm/models/index.js +38 -6
  19. package/api/orm/models/page.d.ts +54 -0
  20. package/api/orm/models/page.js +104 -0
  21. package/api/orm/models/platformApis.d.ts +54 -0
  22. package/api/orm/models/platformApis.js +104 -0
  23. package/api/orm/models/platformPage.d.ts +54 -0
  24. package/api/orm/models/platformPage.js +104 -0
  25. package/api/orm/models/platformSiteAppLink.d.ts +54 -0
  26. package/api/orm/models/platformSiteAppLink.js +104 -0
  27. package/api/orm/models/platformSiteDeepLink.d.ts +54 -0
  28. package/api/orm/models/platformSiteDeepLink.js +104 -0
  29. package/api/orm/models/platformSiteErrorPage.d.ts +54 -0
  30. package/api/orm/models/platformSiteErrorPage.js +104 -0
  31. package/api/orm/models/platformSiteWebConfig.d.ts +54 -0
  32. package/api/orm/models/platformSiteWebConfig.js +104 -0
  33. package/api/orm/models/siteAppLink.d.ts +54 -0
  34. package/api/orm/models/{platformApi.js → siteAppLink.js} +27 -27
  35. package/api/orm/models/siteDeepLink.d.ts +54 -0
  36. package/api/orm/models/siteDeepLink.js +104 -0
  37. package/api/orm/models/siteErrorPage.d.ts +54 -0
  38. package/api/orm/models/siteErrorPage.js +104 -0
  39. package/api/orm/models/siteWebConfig.d.ts +54 -0
  40. package/api/orm/models/siteWebConfig.js +104 -0
  41. package/api/orm/models/tableBehavior.d.ts +54 -0
  42. package/api/orm/models/tableBehavior.js +104 -0
  43. package/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
  44. package/api/orm/models/uniqueConstraintBehavior.js +104 -0
  45. package/api/orm/models/viewBehavior.d.ts +54 -0
  46. package/api/orm/models/viewBehavior.js +104 -0
  47. package/api/orm/mutation/index.d.ts +33 -1
  48. package/api/orm/mutation/index.js +48 -0
  49. package/api/orm/query/index.d.ts +17 -0
  50. package/api/orm/query/index.js +28 -0
  51. package/auth/orm/client.js +11 -1
  52. package/auth/orm/input-types.d.ts +166 -220
  53. package/auth/orm/input-types.js +6 -11
  54. package/compute/orm/client.js +11 -1
  55. package/compute/orm/index.d.ts +4 -0
  56. package/compute/orm/index.js +4 -0
  57. package/compute/orm/input-types.d.ts +539 -8
  58. package/compute/orm/input-types.js +2 -0
  59. package/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
  60. package/compute/orm/models/functionCapabilityBinding.js +104 -0
  61. package/compute/orm/models/index.d.ts +2 -0
  62. package/compute/orm/models/index.js +6 -2
  63. package/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
  64. package/compute/orm/models/platformFunctionCapabilityBinding.js +104 -0
  65. package/config/orm/client.js +11 -1
  66. package/config/orm/input-types.d.ts +53 -5
  67. package/esm/admin/orm/client.js +11 -1
  68. package/esm/agent/orm/client.js +11 -1
  69. package/esm/agent/orm/input-types.d.ts +0 -3
  70. package/esm/api/orm/client.js +11 -1
  71. package/esm/api/orm/index.d.ts +66 -4
  72. package/esm/api/orm/index.js +36 -4
  73. package/esm/api/orm/input-types.d.ts +4946 -630
  74. package/esm/api/orm/input-types.js +34 -6
  75. package/esm/api/orm/models/apis.d.ts +54 -0
  76. package/esm/api/orm/models/{api.js → apis.js} +25 -25
  77. package/esm/api/orm/models/derive.d.ts +54 -0
  78. package/esm/api/orm/models/derive.js +100 -0
  79. package/esm/api/orm/models/fieldBehavior.d.ts +54 -0
  80. package/esm/api/orm/models/fieldBehavior.js +100 -0
  81. package/esm/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
  82. package/esm/api/orm/models/foreignKeyConstraintBehavior.js +100 -0
  83. package/esm/api/orm/models/index.d.ts +18 -2
  84. package/esm/api/orm/models/index.js +18 -2
  85. package/esm/api/orm/models/page.d.ts +54 -0
  86. package/esm/api/orm/models/page.js +100 -0
  87. package/esm/api/orm/models/platformApis.d.ts +54 -0
  88. package/esm/api/orm/models/{platformApi.js → platformApis.js} +25 -25
  89. package/esm/api/orm/models/platformPage.d.ts +54 -0
  90. package/esm/api/orm/models/platformPage.js +100 -0
  91. package/esm/api/orm/models/platformSiteAppLink.d.ts +54 -0
  92. package/esm/api/orm/models/platformSiteAppLink.js +100 -0
  93. package/esm/api/orm/models/platformSiteDeepLink.d.ts +54 -0
  94. package/esm/api/orm/models/platformSiteDeepLink.js +100 -0
  95. package/esm/api/orm/models/platformSiteErrorPage.d.ts +54 -0
  96. package/esm/api/orm/models/platformSiteErrorPage.js +100 -0
  97. package/esm/api/orm/models/platformSiteWebConfig.d.ts +54 -0
  98. package/esm/api/orm/models/platformSiteWebConfig.js +100 -0
  99. package/esm/api/orm/models/siteAppLink.d.ts +54 -0
  100. package/esm/api/orm/models/siteAppLink.js +100 -0
  101. package/esm/api/orm/models/siteDeepLink.d.ts +54 -0
  102. package/esm/api/orm/models/siteDeepLink.js +100 -0
  103. package/esm/api/orm/models/siteErrorPage.d.ts +54 -0
  104. package/esm/api/orm/models/siteErrorPage.js +100 -0
  105. package/esm/api/orm/models/siteWebConfig.d.ts +54 -0
  106. package/esm/api/orm/models/siteWebConfig.js +100 -0
  107. package/esm/api/orm/models/tableBehavior.d.ts +54 -0
  108. package/esm/api/orm/models/tableBehavior.js +100 -0
  109. package/esm/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
  110. package/esm/api/orm/models/uniqueConstraintBehavior.js +100 -0
  111. package/esm/api/orm/models/viewBehavior.d.ts +54 -0
  112. package/esm/api/orm/models/viewBehavior.js +100 -0
  113. package/esm/api/orm/mutation/index.d.ts +33 -1
  114. package/esm/api/orm/mutation/index.js +48 -0
  115. package/esm/api/orm/query/index.d.ts +17 -0
  116. package/esm/api/orm/query/index.js +28 -0
  117. package/esm/auth/orm/client.js +11 -1
  118. package/esm/auth/orm/input-types.d.ts +166 -220
  119. package/esm/auth/orm/input-types.js +6 -11
  120. package/esm/compute/orm/client.js +11 -1
  121. package/esm/compute/orm/index.d.ts +4 -0
  122. package/esm/compute/orm/index.js +4 -0
  123. package/esm/compute/orm/input-types.d.ts +539 -8
  124. package/esm/compute/orm/input-types.js +2 -0
  125. package/esm/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
  126. package/esm/compute/orm/models/functionCapabilityBinding.js +100 -0
  127. package/esm/compute/orm/models/index.d.ts +2 -0
  128. package/esm/compute/orm/models/index.js +2 -0
  129. package/esm/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
  130. package/esm/compute/orm/models/platformFunctionCapabilityBinding.js +100 -0
  131. package/esm/config/orm/client.js +11 -1
  132. package/esm/config/orm/input-types.d.ts +53 -5
  133. package/esm/infra/orm/client.js +11 -1
  134. package/esm/modules/orm/client.js +11 -1
  135. package/esm/modules/orm/index.d.ts +2 -0
  136. package/esm/modules/orm/index.js +2 -0
  137. package/esm/modules/orm/input-types.d.ts +2116 -122
  138. package/esm/modules/orm/input-types.js +40 -0
  139. package/esm/modules/orm/models/index.d.ts +1 -0
  140. package/esm/modules/orm/models/index.js +1 -0
  141. package/esm/modules/orm/models/pagesModule.d.ts +54 -0
  142. package/esm/modules/orm/models/pagesModule.js +100 -0
  143. package/esm/objects/orm/client.js +11 -1
  144. package/esm/usage/orm/client.js +11 -1
  145. package/infra/orm/client.js +11 -1
  146. package/modules/orm/client.js +11 -1
  147. package/modules/orm/index.d.ts +2 -0
  148. package/modules/orm/index.js +2 -0
  149. package/modules/orm/input-types.d.ts +2116 -122
  150. package/modules/orm/input-types.js +40 -0
  151. package/modules/orm/models/index.d.ts +1 -0
  152. package/modules/orm/models/index.js +4 -2
  153. package/modules/orm/models/pagesModule.d.ts +54 -0
  154. package/modules/orm/models/pagesModule.js +104 -0
  155. package/objects/orm/client.js +11 -1
  156. package/package.json +6 -6
  157. package/usage/orm/client.js +11 -1
  158. package/api/orm/models/api.d.ts +0 -54
  159. package/api/orm/models/platformApi.d.ts +0 -54
  160. package/esm/api/orm/models/api.d.ts +0 -54
  161. package/esm/api/orm/models/platformApi.d.ts +0 -54
@@ -250,6 +250,8 @@ export interface Config {
250
250
  namespaceId?: string | null;
251
251
  /** Integration provider slug (e.g. mailgun, postgres). Used by the UI to group config entries by integration. No FK. */
252
252
  provider?: string | null;
253
+ /** Optional discriminator scoping this value under its name. NULL = the default/unqualified value; getters fall back from an exact realm match to the NULL-realm row. */
254
+ realm?: string | null;
253
255
  updatedAt?: string | null;
254
256
  /** Plaintext config value */
255
257
  value?: string | null;
@@ -273,6 +275,8 @@ export interface PlatformConfig {
273
275
  namespaceId?: string | null;
274
276
  /** Integration provider slug (e.g. mailgun, postgres). Used by the UI to group config entries by integration. No FK. */
275
277
  provider?: string | null;
278
+ /** Optional discriminator scoping this value under its name. NULL = the default/unqualified value; getters fall back from an exact realm match to the NULL-realm row. */
279
+ realm?: string | null;
276
280
  updatedAt?: string | null;
277
281
  /** Plaintext config value */
278
282
  value?: string | null;
@@ -285,6 +289,7 @@ export interface PlatformInternalSecret {
285
289
  labels?: Record<string, unknown> | null;
286
290
  name?: string | null;
287
291
  namespaceId?: string | null;
292
+ realm?: string | null;
288
293
  retiredAt?: string | null;
289
294
  rotatedAt?: string | null;
290
295
  updatedAt?: string | null;
@@ -298,6 +303,7 @@ export interface PlatformSecret {
298
303
  name?: string | null;
299
304
  namespaceId?: string | null;
300
305
  provider?: string | null;
306
+ realm?: string | null;
301
307
  retiredAt?: string | null;
302
308
  rotatedAt?: string | null;
303
309
  updatedAt?: string | null;
@@ -312,6 +318,7 @@ export interface Secret {
312
318
  name?: string | null;
313
319
  namespaceId?: string | null;
314
320
  provider?: string | null;
321
+ realm?: string | null;
315
322
  retiredAt?: string | null;
316
323
  rotatedAt?: string | null;
317
324
  updatedAt?: string | null;
@@ -353,6 +360,7 @@ export type ConfigSelect = {
353
360
  name?: boolean;
354
361
  namespaceId?: boolean;
355
362
  provider?: boolean;
363
+ realm?: boolean;
356
364
  updatedAt?: boolean;
357
365
  value?: boolean;
358
366
  };
@@ -366,6 +374,7 @@ export type PlatformConfigSelect = {
366
374
  name?: boolean;
367
375
  namespaceId?: boolean;
368
376
  provider?: boolean;
377
+ realm?: boolean;
369
378
  updatedAt?: boolean;
370
379
  value?: boolean;
371
380
  };
@@ -377,6 +386,7 @@ export type PlatformInternalSecretSelect = {
377
386
  labels?: boolean;
378
387
  name?: boolean;
379
388
  namespaceId?: boolean;
389
+ realm?: boolean;
380
390
  retiredAt?: boolean;
381
391
  rotatedAt?: boolean;
382
392
  updatedAt?: boolean;
@@ -390,6 +400,7 @@ export type PlatformSecretSelect = {
390
400
  name?: boolean;
391
401
  namespaceId?: boolean;
392
402
  provider?: boolean;
403
+ realm?: boolean;
393
404
  retiredAt?: boolean;
394
405
  rotatedAt?: boolean;
395
406
  updatedAt?: boolean;
@@ -404,6 +415,7 @@ export type SecretSelect = {
404
415
  name?: boolean;
405
416
  namespaceId?: boolean;
406
417
  provider?: boolean;
418
+ realm?: boolean;
407
419
  retiredAt?: boolean;
408
420
  rotatedAt?: boolean;
409
421
  updatedAt?: boolean;
@@ -435,6 +447,8 @@ export interface ConfigFilter {
435
447
  or?: ConfigFilter[];
436
448
  /** Filter by the object’s `provider` field. */
437
449
  provider?: StringFilter;
450
+ /** Filter by the object’s `realm` field. */
451
+ realm?: StringFilter;
438
452
  /** Filter by the object’s `updatedAt` field. */
439
453
  updatedAt?: DatetimeFilter;
440
454
  /** Filter by the object’s `value` field. */
@@ -465,6 +479,8 @@ export interface PlatformConfigFilter {
465
479
  or?: PlatformConfigFilter[];
466
480
  /** Filter by the object’s `provider` field. */
467
481
  provider?: StringFilter;
482
+ /** Filter by the object’s `realm` field. */
483
+ realm?: StringFilter;
468
484
  /** Filter by the object’s `updatedAt` field. */
469
485
  updatedAt?: DatetimeFilter;
470
486
  /** Filter by the object’s `value` field. */
@@ -491,6 +507,8 @@ export interface PlatformInternalSecretFilter {
491
507
  not?: PlatformInternalSecretFilter;
492
508
  /** Checks for any expressions in this list. */
493
509
  or?: PlatformInternalSecretFilter[];
510
+ /** Filter by the object’s `realm` field. */
511
+ realm?: StringFilter;
494
512
  /** Filter by the object’s `retiredAt` field. */
495
513
  retiredAt?: DatetimeFilter;
496
514
  /** Filter by the object’s `rotatedAt` field. */
@@ -521,6 +539,8 @@ export interface PlatformSecretFilter {
521
539
  or?: PlatformSecretFilter[];
522
540
  /** Filter by the object’s `provider` field. */
523
541
  provider?: StringFilter;
542
+ /** Filter by the object’s `realm` field. */
543
+ realm?: StringFilter;
524
544
  /** Filter by the object’s `retiredAt` field. */
525
545
  retiredAt?: DatetimeFilter;
526
546
  /** Filter by the object’s `rotatedAt` field. */
@@ -553,6 +573,8 @@ export interface SecretFilter {
553
573
  or?: SecretFilter[];
554
574
  /** Filter by the object’s `provider` field. */
555
575
  provider?: StringFilter;
576
+ /** Filter by the object’s `realm` field. */
577
+ realm?: StringFilter;
556
578
  /** Filter by the object’s `retiredAt` field. */
557
579
  retiredAt?: DatetimeFilter;
558
580
  /** Filter by the object’s `rotatedAt` field. */
@@ -560,11 +582,11 @@ export interface SecretFilter {
560
582
  /** Filter by the object’s `updatedAt` field. */
561
583
  updatedAt?: DatetimeFilter;
562
584
  }
563
- export type ConfigOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
564
- export type PlatformConfigOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
565
- export type PlatformInternalSecretOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'RETIRED_AT_ASC' | 'RETIRED_AT_DESC' | 'ROTATED_AT_ASC' | 'ROTATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
566
- export type PlatformSecretOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'RETIRED_AT_ASC' | 'RETIRED_AT_DESC' | 'ROTATED_AT_ASC' | 'ROTATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
567
- export type SecretOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'RETIRED_AT_ASC' | 'RETIRED_AT_DESC' | 'ROTATED_AT_ASC' | 'ROTATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
585
+ export type ConfigOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
586
+ export type PlatformConfigOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
587
+ export type PlatformInternalSecretOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REALM_ASC' | 'REALM_DESC' | 'RETIRED_AT_ASC' | 'RETIRED_AT_DESC' | 'ROTATED_AT_ASC' | 'ROTATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
588
+ export type PlatformSecretOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'RETIRED_AT_ASC' | 'RETIRED_AT_DESC' | 'ROTATED_AT_ASC' | 'ROTATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
589
+ export type SecretOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'RETIRED_AT_ASC' | 'RETIRED_AT_DESC' | 'ROTATED_AT_ASC' | 'ROTATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
568
590
  export interface CreateConfigInput {
569
591
  clientMutationId?: string;
570
592
  config: {
@@ -576,6 +598,7 @@ export interface CreateConfigInput {
576
598
  name: string;
577
599
  namespaceId: string;
578
600
  provider?: string;
601
+ realm?: string;
579
602
  value?: string;
580
603
  };
581
604
  }
@@ -588,6 +611,7 @@ export interface ConfigPatch {
588
611
  name?: string | null;
589
612
  namespaceId?: string | null;
590
613
  provider?: string | null;
614
+ realm?: string | null;
591
615
  value?: string | null;
592
616
  }
593
617
  export interface UpdateConfigInput {
@@ -609,6 +633,7 @@ export interface CreatePlatformConfigInput {
609
633
  name: string;
610
634
  namespaceId: string;
611
635
  provider?: string;
636
+ realm?: string;
612
637
  value?: string;
613
638
  };
614
639
  }
@@ -620,6 +645,7 @@ export interface PlatformConfigPatch {
620
645
  name?: string | null;
621
646
  namespaceId?: string | null;
622
647
  provider?: string | null;
648
+ realm?: string | null;
623
649
  value?: string | null;
624
650
  }
625
651
  export interface UpdatePlatformConfigInput {
@@ -639,6 +665,7 @@ export interface CreatePlatformInternalSecretInput {
639
665
  labels?: Record<string, unknown>;
640
666
  name?: string;
641
667
  namespaceId: string;
668
+ realm?: string;
642
669
  retiredAt?: string;
643
670
  rotatedAt?: string;
644
671
  };
@@ -649,6 +676,7 @@ export interface PlatformInternalSecretPatch {
649
676
  labels?: Record<string, unknown> | null;
650
677
  name?: string | null;
651
678
  namespaceId?: string | null;
679
+ realm?: string | null;
652
680
  retiredAt?: string | null;
653
681
  rotatedAt?: string | null;
654
682
  }
@@ -670,6 +698,7 @@ export interface CreatePlatformSecretInput {
670
698
  name?: string;
671
699
  namespaceId: string;
672
700
  provider?: string;
701
+ realm?: string;
673
702
  retiredAt?: string;
674
703
  rotatedAt?: string;
675
704
  };
@@ -681,6 +710,7 @@ export interface PlatformSecretPatch {
681
710
  name?: string | null;
682
711
  namespaceId?: string | null;
683
712
  provider?: string | null;
713
+ realm?: string | null;
684
714
  retiredAt?: string | null;
685
715
  rotatedAt?: string | null;
686
716
  }
@@ -703,6 +733,7 @@ export interface CreateSecretInput {
703
733
  name?: string;
704
734
  namespaceId: string;
705
735
  provider?: string;
736
+ realm?: string;
706
737
  retiredAt?: string;
707
738
  rotatedAt?: string;
708
739
  };
@@ -715,6 +746,7 @@ export interface SecretPatch {
715
746
  name?: string | null;
716
747
  namespaceId?: string | null;
717
748
  provider?: string | null;
749
+ realm?: string | null;
718
750
  retiredAt?: string | null;
719
751
  rotatedAt?: string | null;
720
752
  }
@@ -732,12 +764,14 @@ export interface _SecretsDelInput {
732
764
  clientMutationId?: string;
733
765
  databaseId?: string;
734
766
  namespaceId?: string;
767
+ realm?: string;
735
768
  secretName?: string;
736
769
  }
737
770
  export interface _SecretsRemoveArrayInput {
738
771
  clientMutationId?: string;
739
772
  databaseId?: string;
740
773
  namespaceId?: string;
774
+ realm?: string;
741
775
  secretNames?: string[];
742
776
  }
743
777
  export interface _SecretsRotateInput {
@@ -745,6 +779,7 @@ export interface _SecretsRotateInput {
745
779
  clientMutationId?: string;
746
780
  databaseId?: string;
747
781
  namespaceId?: string;
782
+ realm?: string;
748
783
  secretName?: string;
749
784
  secretValue?: string;
750
785
  }
@@ -755,22 +790,26 @@ export interface _SecretsSetInput {
755
790
  scopeDatabaseId?: string;
756
791
  secretName?: string;
757
792
  secretNamespaceId?: string;
793
+ secretRealm?: string;
758
794
  secretValue?: string;
759
795
  }
760
796
  export interface PlatformInternalSecretsDelInput {
761
797
  clientMutationId?: string;
762
798
  namespaceId?: string;
799
+ realm?: string;
763
800
  secretName?: string;
764
801
  }
765
802
  export interface PlatformInternalSecretsRemoveArrayInput {
766
803
  clientMutationId?: string;
767
804
  namespaceId?: string;
805
+ realm?: string;
768
806
  secretNames?: string[];
769
807
  }
770
808
  export interface PlatformInternalSecretsRotateInput {
771
809
  algo?: string;
772
810
  clientMutationId?: string;
773
811
  namespaceId?: string;
812
+ realm?: string;
774
813
  secretName?: string;
775
814
  secretValue?: string;
776
815
  }
@@ -779,22 +818,26 @@ export interface PlatformInternalSecretsSetInput {
779
818
  clientMutationId?: string;
780
819
  secretName?: string;
781
820
  secretNamespaceId?: string;
821
+ secretRealm?: string;
782
822
  secretValue?: string;
783
823
  }
784
824
  export interface PlatformSecretsDelInput {
785
825
  clientMutationId?: string;
786
826
  namespaceId?: string;
827
+ realm?: string;
787
828
  secretName?: string;
788
829
  }
789
830
  export interface PlatformSecretsRemoveArrayInput {
790
831
  clientMutationId?: string;
791
832
  namespaceId?: string;
833
+ realm?: string;
792
834
  secretNames?: string[];
793
835
  }
794
836
  export interface PlatformSecretsRotateInput {
795
837
  algo?: string;
796
838
  clientMutationId?: string;
797
839
  namespaceId?: string;
840
+ realm?: string;
798
841
  secretName?: string;
799
842
  secretValue?: string;
800
843
  }
@@ -804,6 +847,7 @@ export interface PlatformSecretsSetInput {
804
847
  provider?: string;
805
848
  secretName?: string;
806
849
  secretNamespaceId?: string;
850
+ secretRealm?: string;
807
851
  secretValue?: string;
808
852
  }
809
853
  export interface ProvisionBucketInput {
@@ -836,6 +880,8 @@ export interface ConfigInput {
836
880
  namespaceId: string;
837
881
  /** Integration provider slug (e.g. mailgun, postgres). Used by the UI to group config entries by integration. No FK. */
838
882
  provider?: string;
883
+ /** Optional discriminator scoping this value under its name. NULL = the default/unqualified value; getters fall back from an exact realm match to the NULL-realm row. */
884
+ realm?: string;
839
885
  updatedAt?: string;
840
886
  /** Plaintext config value */
841
887
  value?: string;
@@ -859,6 +905,8 @@ export interface PlatformConfigInput {
859
905
  namespaceId: string;
860
906
  /** Integration provider slug (e.g. mailgun, postgres). Used by the UI to group config entries by integration. No FK. */
861
907
  provider?: string;
908
+ /** Optional discriminator scoping this value under its name. NULL = the default/unqualified value; getters fall back from an exact realm match to the NULL-realm row. */
909
+ realm?: string;
862
910
  updatedAt?: string;
863
911
  /** Plaintext config value */
864
912
  value?: string;
@@ -59,6 +59,16 @@ export class FetchAdapter {
59
59
  return this.endpoint;
60
60
  }
61
61
  }
62
+ /**
63
+ * Describe a single GraphQL error, falling back to its `extensions.code` when
64
+ * the server omits `message` so the error never renders as an empty string.
65
+ */
66
+ function describeGraphQLError(error) {
67
+ if (error.message)
68
+ return error.message;
69
+ const code = error.extensions?.code;
70
+ return typeof code === 'string' ? code : 'Unknown error';
71
+ }
62
72
  /**
63
73
  * Error thrown when GraphQL request fails
64
74
  */
@@ -66,7 +76,7 @@ export class GraphQLRequestError extends Error {
66
76
  errors;
67
77
  data;
68
78
  constructor(errors, data = null) {
69
- const messages = errors.map((e) => e.message).join('; ');
79
+ const messages = errors.map(describeGraphQLError).join('; ');
70
80
  super(`GraphQL Error: ${messages}`);
71
81
  this.errors = errors;
72
82
  this.data = data;
@@ -59,6 +59,16 @@ export class FetchAdapter {
59
59
  return this.endpoint;
60
60
  }
61
61
  }
62
+ /**
63
+ * Describe a single GraphQL error, falling back to its `extensions.code` when
64
+ * the server omits `message` so the error never renders as an empty string.
65
+ */
66
+ function describeGraphQLError(error) {
67
+ if (error.message)
68
+ return error.message;
69
+ const code = error.extensions?.code;
70
+ return typeof code === 'string' ? code : 'Unknown error';
71
+ }
62
72
  /**
63
73
  * Error thrown when GraphQL request fails
64
74
  */
@@ -66,7 +76,7 @@ export class GraphQLRequestError extends Error {
66
76
  errors;
67
77
  data;
68
78
  constructor(errors, data = null) {
69
- const messages = errors.map((e) => e.message).join('; ');
79
+ const messages = errors.map(describeGraphQLError).join('; ');
70
80
  super(`GraphQL Error: ${messages}`);
71
81
  this.errors = errors;
72
82
  this.data = data;
@@ -1350,7 +1350,6 @@ export interface CreateAgentResourceInput {
1350
1350
  description?: string;
1351
1351
  embedding?: number[];
1352
1352
  embeddingText?: string;
1353
- embeddingUpdatedAt?: string;
1354
1353
  isActive?: boolean;
1355
1354
  isArchived?: boolean;
1356
1355
  keywords?: string[];
@@ -1369,7 +1368,6 @@ export interface AgentResourcePatch {
1369
1368
  description?: string | null;
1370
1369
  embedding?: number[] | null;
1371
1370
  embeddingText?: string | null;
1372
- embeddingUpdatedAt?: string | null;
1373
1371
  isActive?: boolean | null;
1374
1372
  isArchived?: boolean | null;
1375
1373
  keywords?: string[] | null;
@@ -1807,7 +1805,6 @@ export interface AgentResourceInput {
1807
1805
  embedding?: number[];
1808
1806
  /** Natural language text to embed server-side into the `embedding` vector column. Mutually exclusive with `embedding` — provide one or the other. Requires the LLM plugin to be configured with an embedding provider. */
1809
1807
  embeddingText?: string;
1810
- embeddingUpdatedAt?: string;
1811
1808
  id?: string;
1812
1809
  /** Whether this resource is active and retrievable */
1813
1810
  isActive?: boolean;
@@ -59,6 +59,16 @@ export class FetchAdapter {
59
59
  return this.endpoint;
60
60
  }
61
61
  }
62
+ /**
63
+ * Describe a single GraphQL error, falling back to its `extensions.code` when
64
+ * the server omits `message` so the error never renders as an empty string.
65
+ */
66
+ function describeGraphQLError(error) {
67
+ if (error.message)
68
+ return error.message;
69
+ const code = error.extensions?.code;
70
+ return typeof code === 'string' ? code : 'Unknown error';
71
+ }
62
72
  /**
63
73
  * Error thrown when GraphQL request fails
64
74
  */
@@ -66,7 +76,7 @@ export class GraphQLRequestError extends Error {
66
76
  errors;
67
77
  data;
68
78
  constructor(errors, data = null) {
69
- const messages = errors.map((e) => e.message).join('; ');
79
+ const messages = errors.map(describeGraphQLError).join('; ');
70
80
  super(`GraphQL Error: ${messages}`);
71
81
  this.errors = errors;
72
82
  this.data = data;
@@ -1,7 +1,7 @@
1
1
  import type { OrmClientConfig } from './client';
2
- import { ApiModel } from './models/api';
3
2
  import { ApiSchemaModel } from './models/apiSchema';
4
3
  import { ApiSettingModel } from './models/apiSetting';
4
+ import { ApisModel } from './models/apis';
5
5
  import { AstMigrationModel } from './models/astMigration';
6
6
  import { CheckConstraintModel } from './models/checkConstraint';
7
7
  import { CompositeTypeModel } from './models/compositeType';
@@ -10,6 +10,7 @@ import { DatabaseModel } from './models/database';
10
10
  import { DatabaseSettingModel } from './models/databaseSetting';
11
11
  import { DatabaseTransferModel } from './models/databaseTransfer';
12
12
  import { DefaultPrivilegeModel } from './models/defaultPrivilege';
13
+ import { DeriveModel } from './models/derive';
13
14
  import { DomainModel } from './models/domain';
14
15
  import { DomainEventModel } from './models/domainEvent';
15
16
  import { DomainTypeModel } from './models/domainType';
@@ -17,7 +18,9 @@ import { DomainVerificationModel } from './models/domainVerification';
17
18
  import { EmbeddingChunkModel } from './models/embeddingChunk';
18
19
  import { EnumModel } from './models/enum';
19
20
  import { ExclusionConstraintModel } from './models/exclusionConstraint';
21
+ import { FieldBehaviorModel } from './models/fieldBehavior';
20
22
  import { FieldModel } from './models/field';
23
+ import { ForeignKeyConstraintBehaviorModel } from './models/foreignKeyConstraintBehavior';
21
24
  import { ForeignKeyConstraintModel } from './models/foreignKeyConstraint';
22
25
  import { FullTextSearchModel } from './models/fullTextSearch';
23
26
  import { FunctionModel } from './models/function';
@@ -26,19 +29,25 @@ import { HttpRouteModel } from './models/httpRoute';
26
29
  import { IndexModel } from './models/index';
27
30
  import { ManagedDomainModel } from './models/managedDomain';
28
31
  import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
32
+ import { PageModel } from './models/page';
29
33
  import { PartitionModel } from './models/partition';
30
- import { PlatformApiModel } from './models/platformApi';
31
34
  import { PlatformApiSchemaModel } from './models/platformApiSchema';
32
35
  import { PlatformApiSettingModel } from './models/platformApiSetting';
36
+ import { PlatformApisModel } from './models/platformApis';
33
37
  import { PlatformCorsSettingModel } from './models/platformCorsSetting';
34
38
  import { PlatformDomainModel } from './models/platformDomain';
35
39
  import { PlatformDomainEventModel } from './models/platformDomainEvent';
36
40
  import { PlatformDomainVerificationModel } from './models/platformDomainVerification';
37
41
  import { PlatformManagedDomainModel } from './models/platformManagedDomain';
42
+ import { PlatformPageModel } from './models/platformPage';
43
+ import { PlatformSiteAppLinkModel } from './models/platformSiteAppLink';
38
44
  import { PlatformSiteModel } from './models/platformSite';
45
+ import { PlatformSiteDeepLinkModel } from './models/platformSiteDeepLink';
46
+ import { PlatformSiteErrorPageModel } from './models/platformSiteErrorPage';
39
47
  import { PlatformSiteMetadatumModel } from './models/platformSiteMetadatum';
40
48
  import { PlatformSiteModuleModel } from './models/platformSiteModule';
41
49
  import { PlatformSiteThemeModel } from './models/platformSiteTheme';
50
+ import { PlatformSiteWebConfigModel } from './models/platformSiteWebConfig';
42
51
  import { PolicyModel } from './models/policy';
43
52
  import { PrimaryKeyConstraintModel } from './models/primaryKeyConstraint';
44
53
  import { PubkeySettingModel } from './models/pubkeySetting';
@@ -47,17 +56,24 @@ import { RouteBindingModel } from './models/routeBinding';
47
56
  import { RouteModel } from './models/route';
48
57
  import { SchemaModel } from './models/schema';
49
58
  import { SchemaGrantModel } from './models/schemaGrant';
59
+ import { SiteAppLinkModel } from './models/siteAppLink';
50
60
  import { SiteModel } from './models/site';
61
+ import { SiteDeepLinkModel } from './models/siteDeepLink';
62
+ import { SiteErrorPageModel } from './models/siteErrorPage';
51
63
  import { SiteMetadatumModel } from './models/siteMetadatum';
52
64
  import { SiteModuleModel } from './models/siteModule';
53
65
  import { SiteThemeModel } from './models/siteTheme';
66
+ import { SiteWebConfigModel } from './models/siteWebConfig';
54
67
  import { SpatialRelationModel } from './models/spatialRelation';
55
68
  import { SqlActionModel } from './models/sqlAction';
69
+ import { TableBehaviorModel } from './models/tableBehavior';
56
70
  import { TableModel } from './models/table';
57
71
  import { TableGrantModel } from './models/tableGrant';
58
72
  import { TriggerModel } from './models/trigger';
59
73
  import { TriggerFunctionModel } from './models/triggerFunction';
74
+ import { UniqueConstraintBehaviorModel } from './models/uniqueConstraintBehavior';
60
75
  import { UniqueConstraintModel } from './models/uniqueConstraint';
76
+ import { ViewBehaviorModel } from './models/viewBehavior';
61
77
  import { ViewModel } from './models/view';
62
78
  import { ViewGrantModel } from './models/viewGrant';
63
79
  import { ViewRuleModel } from './models/viewRule';
@@ -94,9 +110,9 @@ export { createMutationOperations } from './mutation';
94
110
  * ```
95
111
  */
96
112
  export declare function createClient(config: OrmClientConfig): {
97
- api: ApiModel;
98
113
  apiSchema: ApiSchemaModel;
99
114
  apiSetting: ApiSettingModel;
115
+ apis: ApisModel;
100
116
  astMigration: AstMigrationModel;
101
117
  checkConstraint: CheckConstraintModel;
102
118
  compositeType: CompositeTypeModel;
@@ -105,6 +121,7 @@ export declare function createClient(config: OrmClientConfig): {
105
121
  databaseSetting: DatabaseSettingModel;
106
122
  databaseTransfer: DatabaseTransferModel;
107
123
  defaultPrivilege: DefaultPrivilegeModel;
124
+ derive: DeriveModel;
108
125
  domain: DomainModel;
109
126
  domainEvent: DomainEventModel;
110
127
  domainType: DomainTypeModel;
@@ -112,7 +129,9 @@ export declare function createClient(config: OrmClientConfig): {
112
129
  embeddingChunk: EmbeddingChunkModel;
113
130
  enum: EnumModel;
114
131
  exclusionConstraint: ExclusionConstraintModel;
132
+ fieldBehavior: FieldBehaviorModel;
115
133
  field: FieldModel;
134
+ foreignKeyConstraintBehavior: ForeignKeyConstraintBehaviorModel;
116
135
  foreignKeyConstraint: ForeignKeyConstraintModel;
117
136
  fullTextSearch: FullTextSearchModel;
118
137
  function: FunctionModel;
@@ -121,19 +140,25 @@ export declare function createClient(config: OrmClientConfig): {
121
140
  index: IndexModel;
122
141
  managedDomain: ManagedDomainModel;
123
142
  nodeTypeRegistry: NodeTypeRegistryModel;
143
+ page: PageModel;
124
144
  partition: PartitionModel;
125
- platformApi: PlatformApiModel;
126
145
  platformApiSchema: PlatformApiSchemaModel;
127
146
  platformApiSetting: PlatformApiSettingModel;
147
+ platformApis: PlatformApisModel;
128
148
  platformCorsSetting: PlatformCorsSettingModel;
129
149
  platformDomain: PlatformDomainModel;
130
150
  platformDomainEvent: PlatformDomainEventModel;
131
151
  platformDomainVerification: PlatformDomainVerificationModel;
132
152
  platformManagedDomain: PlatformManagedDomainModel;
153
+ platformPage: PlatformPageModel;
154
+ platformSiteAppLink: PlatformSiteAppLinkModel;
133
155
  platformSite: PlatformSiteModel;
156
+ platformSiteDeepLink: PlatformSiteDeepLinkModel;
157
+ platformSiteErrorPage: PlatformSiteErrorPageModel;
134
158
  platformSiteMetadatum: PlatformSiteMetadatumModel;
135
159
  platformSiteModule: PlatformSiteModuleModel;
136
160
  platformSiteTheme: PlatformSiteThemeModel;
161
+ platformSiteWebConfig: PlatformSiteWebConfigModel;
137
162
  policy: PolicyModel;
138
163
  primaryKeyConstraint: PrimaryKeyConstraintModel;
139
164
  pubkeySetting: PubkeySettingModel;
@@ -142,17 +167,24 @@ export declare function createClient(config: OrmClientConfig): {
142
167
  route: RouteModel;
143
168
  schema: SchemaModel;
144
169
  schemaGrant: SchemaGrantModel;
170
+ siteAppLink: SiteAppLinkModel;
145
171
  site: SiteModel;
172
+ siteDeepLink: SiteDeepLinkModel;
173
+ siteErrorPage: SiteErrorPageModel;
146
174
  siteMetadatum: SiteMetadatumModel;
147
175
  siteModule: SiteModuleModel;
148
176
  siteTheme: SiteThemeModel;
177
+ siteWebConfig: SiteWebConfigModel;
149
178
  spatialRelation: SpatialRelationModel;
150
179
  sqlAction: SqlActionModel;
180
+ tableBehavior: TableBehaviorModel;
151
181
  table: TableModel;
152
182
  tableGrant: TableGrantModel;
153
183
  trigger: TriggerModel;
154
184
  triggerFunction: TriggerFunctionModel;
185
+ uniqueConstraintBehavior: UniqueConstraintBehaviorModel;
155
186
  uniqueConstraint: UniqueConstraintModel;
187
+ viewBehavior: ViewBehaviorModel;
156
188
  view: ViewModel;
157
189
  viewGrant: ViewGrantModel;
158
190
  viewRule: ViewRuleModel;
@@ -169,6 +201,11 @@ export declare function createClient(config: OrmClientConfig): {
169
201
  }) => import("./query-builder").QueryBuilder<{
170
202
  applyRegistryDefaults: unknown | null;
171
203
  }>;
204
+ resolveDeepLink: (args: import("./query").ResolveDeepLinkVariables, options?: {
205
+ select?: Record<string, unknown>;
206
+ }) => import("./query-builder").QueryBuilder<{
207
+ resolveDeepLink: unknown | null;
208
+ }>;
172
209
  resolveHttpRoute: <S extends import("./input-types").ResolveHttpRouteRecordSelect>(args: import("./query").ResolveHttpRouteVariables, options: {
173
210
  select: S;
174
211
  } & import("./select-types").StrictSelect<S, import("./input-types").ResolveHttpRouteRecordSelect>) => import("./query-builder").QueryBuilder<{
@@ -179,6 +216,11 @@ export declare function createClient(config: OrmClientConfig): {
179
216
  } & import("./select-types").StrictSelect<S, import("./input-types").ResolveRouteRecordSelect>) => import("./query-builder").QueryBuilder<{
180
217
  resolveRoute: import("./select-types").InferSelectResult<import("./input-types").ResolveRouteRecord, S> | null;
181
218
  }>;
219
+ resolveSiteAppLinks: (args: import("./query").ResolveSiteAppLinksVariables, options?: {
220
+ select?: Record<string, unknown>;
221
+ }) => import("./query-builder").QueryBuilder<{
222
+ resolveSiteAppLinks: unknown | null;
223
+ }>;
182
224
  };
183
225
  mutation: {
184
226
  acceptDatabaseTransfer: <S extends import("./input-types").AcceptDatabaseTransferPayloadSelect>(args: import("./mutation").AcceptDatabaseTransferVariables, options: {
@@ -196,6 +238,21 @@ export declare function createClient(config: OrmClientConfig): {
196
238
  } & import("./select-types").StrictSelect<S, import("./input-types").CancelDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
197
239
  cancelDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").CancelDatabaseTransferPayload, S> | null;
198
240
  }>;
241
+ domainsAssignSubdomain: <S extends import("./input-types").DomainsAssignSubdomainPayloadSelect>(args: import("./mutation").DomainsAssignSubdomainVariables, options: {
242
+ select: S;
243
+ } & import("./select-types").StrictSelect<S, import("./input-types").DomainsAssignSubdomainPayloadSelect>) => import("./query-builder").QueryBuilder<{
244
+ domainsAssignSubdomain: import("./select-types").InferSelectResult<import("./input-types").DomainsAssignSubdomainPayload, S> | null;
245
+ }>;
246
+ platformDomainsAssignSubdomain: <S extends import("./input-types").PlatformDomainsAssignSubdomainPayloadSelect>(args: import("./mutation").PlatformDomainsAssignSubdomainVariables, options: {
247
+ select: S;
248
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformDomainsAssignSubdomainPayloadSelect>) => import("./query-builder").QueryBuilder<{
249
+ platformDomainsAssignSubdomain: import("./select-types").InferSelectResult<import("./input-types").PlatformDomainsAssignSubdomainPayload, S> | null;
250
+ }>;
251
+ platformSitesProvisionStaticSite: <S extends import("./input-types").PlatformSitesProvisionStaticSitePayloadSelect>(args: import("./mutation").PlatformSitesProvisionStaticSiteVariables, options: {
252
+ select: S;
253
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformSitesProvisionStaticSitePayloadSelect>) => import("./query-builder").QueryBuilder<{
254
+ platformSitesProvisionStaticSite: import("./select-types").InferSelectResult<import("./input-types").PlatformSitesProvisionStaticSitePayload, S> | null;
255
+ }>;
199
256
  provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
200
257
  select: S;
201
258
  } & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
@@ -216,5 +273,10 @@ export declare function createClient(config: OrmClientConfig): {
216
273
  } & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
217
274
  setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
218
275
  }>;
276
+ sitesProvisionStaticSite: <S extends import("./input-types").SitesProvisionStaticSitePayloadSelect>(args: import("./mutation").SitesProvisionStaticSiteVariables, options: {
277
+ select: S;
278
+ } & import("./select-types").StrictSelect<S, import("./input-types").SitesProvisionStaticSitePayloadSelect>) => import("./query-builder").QueryBuilder<{
279
+ sitesProvisionStaticSite: import("./select-types").InferSelectResult<import("./input-types").SitesProvisionStaticSitePayload, S> | null;
280
+ }>;
219
281
  };
220
282
  };