@terrantula/sdk 0.11.2 → 0.12.0

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/dist/local.d.ts CHANGED
@@ -23,9 +23,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
23
23
  slug: string;
24
24
  id: string;
25
25
  createdAt: string;
26
+ metadata: string | null;
26
27
  deletedAt: string | null;
27
28
  logo: string | null;
28
- metadata: string | null;
29
29
  suspendedAt: string | null;
30
30
  }>;
31
31
  get: SchemaFn<zod.ZodObject<{
@@ -37,12 +37,14 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
37
37
  }>, {
38
38
  error: string;
39
39
  } | {
40
+ metadata: {
41
+ [x: string]: hono_utils_types.JSONValue;
42
+ } | null;
40
43
  id: string;
41
44
  name: string;
42
45
  slug: string;
43
46
  logo: string | null;
44
47
  createdAt: string;
45
- metadata: string | null;
46
48
  deletedAt: string | null;
47
49
  suspendedAt: string | null;
48
50
  }>;
@@ -294,10 +296,10 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
294
296
  name: string;
295
297
  slug: string;
296
298
  createdAt: string;
297
- updatedAt: string;
298
299
  metadata: {
299
300
  [x: string]: hono_utils_types.JSONValue;
300
301
  };
302
+ updatedAt: string;
301
303
  orgId: string;
302
304
  isDemo: boolean;
303
305
  lastDriftRunAt: string | null;
@@ -946,6 +948,12 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
946
948
  yellowSeconds?: number | undefined;
947
949
  } | null;
948
950
  applier: string | null;
951
+ labels: {
952
+ [x: string]: string;
953
+ };
954
+ labelMappings: {
955
+ [x: string]: string;
956
+ };
949
957
  createdAt: string;
950
958
  updatedAt: string;
951
959
  }[]>;
@@ -1009,6 +1017,12 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1009
1017
  yellowSeconds?: number | undefined;
1010
1018
  } | null;
1011
1019
  applier: string | null;
1020
+ labels: {
1021
+ [x: string]: string;
1022
+ };
1023
+ labelMappings: {
1024
+ [x: string]: string;
1025
+ };
1012
1026
  createdAt: string;
1013
1027
  updatedAt: string;
1014
1028
  }>;
@@ -1159,6 +1173,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1159
1173
  kind: "data" | "resource" | "module";
1160
1174
  address: string;
1161
1175
  }>, "many">>;
1176
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
1177
+ labelMappings: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
1162
1178
  } & {
1163
1179
  orgId: zod.ZodString;
1164
1180
  projectId: zod.ZodString;
@@ -1211,6 +1227,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1211
1227
  yellowSeconds?: number | undefined;
1212
1228
  } | undefined;
1213
1229
  applier?: string | undefined;
1230
+ labels?: Record<string, string> | undefined;
1231
+ labelMappings?: Record<string, string> | undefined;
1214
1232
  }, {
1215
1233
  name: string;
1216
1234
  orgId: string;
@@ -1260,6 +1278,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1260
1278
  yellowSeconds?: number | undefined;
1261
1279
  } | undefined;
1262
1280
  applier?: string | undefined;
1281
+ labels?: Record<string, string> | undefined;
1282
+ labelMappings?: Record<string, string> | undefined;
1263
1283
  }>, {
1264
1284
  name: string;
1265
1285
  createdAt: string;
@@ -1310,6 +1330,12 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1310
1330
  yellowSeconds?: number | undefined;
1311
1331
  } | null;
1312
1332
  applier: string | null;
1333
+ labels: {
1334
+ [x: string]: string;
1335
+ };
1336
+ labelMappings: {
1337
+ [x: string]: string;
1338
+ };
1313
1339
  }>;
1314
1340
  update: SchemaFn<zod.ZodObject<{
1315
1341
  kind: zod.ZodLiteral<"EntityType">;
@@ -1458,6 +1484,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1458
1484
  kind: "data" | "resource" | "module";
1459
1485
  address: string;
1460
1486
  }>, "many">>;
1487
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
1488
+ labelMappings: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
1461
1489
  } & {
1462
1490
  orgId: zod.ZodString;
1463
1491
  projectId: zod.ZodString;
@@ -1510,6 +1538,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1510
1538
  yellowSeconds?: number | undefined;
1511
1539
  } | undefined;
1512
1540
  applier?: string | undefined;
1541
+ labels?: Record<string, string> | undefined;
1542
+ labelMappings?: Record<string, string> | undefined;
1513
1543
  }, {
1514
1544
  name: string;
1515
1545
  orgId: string;
@@ -1559,6 +1589,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1559
1589
  yellowSeconds?: number | undefined;
1560
1590
  } | undefined;
1561
1591
  applier?: string | undefined;
1592
+ labels?: Record<string, string> | undefined;
1593
+ labelMappings?: Record<string, string> | undefined;
1562
1594
  }>, {
1563
1595
  orgId: string;
1564
1596
  projectId: string;
@@ -1607,6 +1639,12 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1607
1639
  yellowSeconds?: number | undefined;
1608
1640
  } | null;
1609
1641
  applier: string | null;
1642
+ labels: {
1643
+ [x: string]: string;
1644
+ };
1645
+ labelMappings: {
1646
+ [x: string]: string;
1647
+ };
1610
1648
  createdAt: string;
1611
1649
  updatedAt: string;
1612
1650
  }>;
@@ -1652,6 +1690,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1652
1690
  [x: string]: string;
1653
1691
  };
1654
1692
  capacity: number | null;
1693
+ labels: {
1694
+ [x: string]: string;
1695
+ };
1655
1696
  createdAt: string;
1656
1697
  updatedAt: string;
1657
1698
  }[]>;
@@ -1682,6 +1723,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1682
1723
  [x: string]: string;
1683
1724
  };
1684
1725
  capacity: number | null;
1726
+ labels: {
1727
+ [x: string]: string;
1728
+ };
1685
1729
  createdAt: string;
1686
1730
  updatedAt: string;
1687
1731
  }>;
@@ -1695,6 +1739,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1695
1739
  properties: zod.ZodDefault<zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
1696
1740
  capacity: zod.ZodOptional<zod.ZodNumber>;
1697
1741
  credentialRef: zod.ZodOptional<zod.ZodString>;
1742
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
1698
1743
  } & {
1699
1744
  orgId: zod.ZodString;
1700
1745
  projectId: zod.ZodString;
@@ -1708,6 +1753,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1708
1753
  set?: string | undefined;
1709
1754
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
1710
1755
  displayName?: string | undefined;
1756
+ labels?: Record<string, string> | undefined;
1711
1757
  credentialRef?: string | undefined;
1712
1758
  capacity?: number | undefined;
1713
1759
  }, {
@@ -1719,6 +1765,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1719
1765
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
1720
1766
  displayName?: string | undefined;
1721
1767
  properties?: Record<string, string> | undefined;
1768
+ labels?: Record<string, string> | undefined;
1722
1769
  config?: Record<string, unknown> | undefined;
1723
1770
  credentialRef?: string | undefined;
1724
1771
  capacity?: number | undefined;
@@ -1734,6 +1781,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1734
1781
  properties: {
1735
1782
  [x: string]: string;
1736
1783
  };
1784
+ labels: {
1785
+ [x: string]: string;
1786
+ };
1737
1787
  config: {
1738
1788
  [x: string]: hono_utils_types.JSONValue;
1739
1789
  };
@@ -1750,6 +1800,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1750
1800
  properties: zod.ZodDefault<zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
1751
1801
  capacity: zod.ZodOptional<zod.ZodNumber>;
1752
1802
  credentialRef: zod.ZodOptional<zod.ZodString>;
1803
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
1753
1804
  } & {
1754
1805
  orgId: zod.ZodString;
1755
1806
  projectId: zod.ZodString;
@@ -1763,6 +1814,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1763
1814
  set?: string | undefined;
1764
1815
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
1765
1816
  displayName?: string | undefined;
1817
+ labels?: Record<string, string> | undefined;
1766
1818
  credentialRef?: string | undefined;
1767
1819
  capacity?: number | undefined;
1768
1820
  }, {
@@ -1774,6 +1826,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1774
1826
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
1775
1827
  displayName?: string | undefined;
1776
1828
  properties?: Record<string, string> | undefined;
1829
+ labels?: Record<string, string> | undefined;
1777
1830
  config?: Record<string, unknown> | undefined;
1778
1831
  credentialRef?: string | undefined;
1779
1832
  capacity?: number | undefined;
@@ -1792,6 +1845,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1792
1845
  [x: string]: string;
1793
1846
  };
1794
1847
  capacity: number | null;
1848
+ labels: {
1849
+ [x: string]: string;
1850
+ };
1795
1851
  createdAt: string;
1796
1852
  updatedAt: string;
1797
1853
  }>;
@@ -1831,7 +1887,13 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1831
1887
  properties: {
1832
1888
  [x: string]: string;
1833
1889
  };
1890
+ config: {
1891
+ [x: string]: hono_utils_types.JSONValue;
1892
+ };
1834
1893
  credentialRef: string | null;
1894
+ labels: {
1895
+ [x: string]: string;
1896
+ };
1835
1897
  createdAt: string;
1836
1898
  updatedAt: string;
1837
1899
  }[]>;
@@ -1856,7 +1918,13 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1856
1918
  properties: {
1857
1919
  [x: string]: string;
1858
1920
  };
1921
+ config: {
1922
+ [x: string]: hono_utils_types.JSONValue;
1923
+ };
1859
1924
  credentialRef: string | null;
1925
+ labels: {
1926
+ [x: string]: string;
1927
+ };
1860
1928
  createdAt: string;
1861
1929
  updatedAt: string;
1862
1930
  }>;
@@ -1866,7 +1934,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1866
1934
  displayName: zod.ZodOptional<zod.ZodString>;
1867
1935
  provider: zod.ZodEnum<["aws", "gcp", "s3-backend", "tfc-workspace", "generic"]>;
1868
1936
  properties: zod.ZodDefault<zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
1937
+ config: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodUnknown>>;
1869
1938
  credentialRef: zod.ZodOptional<zod.ZodString>;
1939
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
1870
1940
  } & {
1871
1941
  orgId: zod.ZodString;
1872
1942
  projectId: zod.ZodString;
@@ -1878,6 +1948,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1878
1948
  properties: Record<string, string>;
1879
1949
  kind: "DeploymentTargetSet";
1880
1950
  displayName?: string | undefined;
1951
+ labels?: Record<string, string> | undefined;
1952
+ config?: Record<string, unknown> | undefined;
1881
1953
  credentialRef?: string | undefined;
1882
1954
  }, {
1883
1955
  name: string;
@@ -1887,6 +1959,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1887
1959
  kind: "DeploymentTargetSet";
1888
1960
  displayName?: string | undefined;
1889
1961
  properties?: Record<string, string> | undefined;
1962
+ labels?: Record<string, string> | undefined;
1963
+ config?: Record<string, unknown> | undefined;
1890
1964
  credentialRef?: string | undefined;
1891
1965
  }>, {
1892
1966
  name: string;
@@ -1899,6 +1973,12 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
1899
1973
  properties: {
1900
1974
  [x: string]: string;
1901
1975
  };
1976
+ labels: {
1977
+ [x: string]: string;
1978
+ };
1979
+ config: {
1980
+ [x: string]: hono_utils_types.JSONValue;
1981
+ };
1902
1982
  credentialRef: string | null;
1903
1983
  }>;
1904
1984
  delete: SchemaFn<zod.ZodObject<{
@@ -2086,8 +2166,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2086
2166
  envId: string;
2087
2167
  state: string;
2088
2168
  properties: hono_utils_types.JSONValue;
2089
- entityTypeName: string;
2090
2169
  labels: hono_utils_types.JSONValue;
2170
+ entityTypeName: string;
2091
2171
  lastSyncedAt: string | null;
2092
2172
  syncSource: string | null;
2093
2173
  }>;
@@ -2165,8 +2245,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2165
2245
  status: "failed" | "pending" | "running" | "succeeded" | "cancelled" | "dispatching" | "blocked";
2166
2246
  id: string;
2167
2247
  createdAt: string;
2168
- error: string | null;
2169
2248
  metadata: hono_utils_types.JSONValue;
2249
+ error: string | null;
2170
2250
  output: hono_utils_types.JSONValue;
2171
2251
  orgId: string;
2172
2252
  projectId: string;
@@ -2340,6 +2420,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2340
2420
  };
2341
2421
  } | undefined;
2342
2422
  } | null;
2423
+ labels: {
2424
+ [x: string]: string;
2425
+ };
2343
2426
  createdAt: string;
2344
2427
  updatedAt: string;
2345
2428
  }[]>;
@@ -2409,6 +2492,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2409
2492
  };
2410
2493
  } | undefined;
2411
2494
  } | null;
2495
+ labels: {
2496
+ [x: string]: string;
2497
+ };
2412
2498
  createdAt: string;
2413
2499
  updatedAt: string;
2414
2500
  }>;
@@ -2690,6 +2776,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2690
2776
  policy?: "least-loaded" | "round-robin" | "random" | undefined;
2691
2777
  }> | undefined;
2692
2778
  }>>;
2779
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
2693
2780
  } & {
2694
2781
  orgId: zod.ZodString;
2695
2782
  projectId: zod.ZodString;
@@ -2707,6 +2794,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2707
2794
  placementPolicy: "least-loaded" | "round-robin" | "random";
2708
2795
  parentCells: string[];
2709
2796
  displayName?: string | undefined;
2797
+ labels?: Record<string, string> | undefined;
2710
2798
  targetSelector?: {
2711
2799
  primary: {
2712
2800
  set: string;
@@ -2759,6 +2847,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2759
2847
  metric: string;
2760
2848
  aggregate: "max" | "sum" | "avg" | "min";
2761
2849
  }[] | undefined;
2850
+ labels?: Record<string, string> | undefined;
2762
2851
  placementPolicy?: "least-loaded" | "round-robin" | "random" | undefined;
2763
2852
  parentCells?: string[] | undefined;
2764
2853
  targetSelector?: {
@@ -2813,6 +2902,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
2813
2902
  metric: string;
2814
2903
  aggregate: "max" | "sum" | "avg" | "min";
2815
2904
  }[];
2905
+ labels: {
2906
+ [x: string]: string;
2907
+ };
2816
2908
  entityTypeName: string;
2817
2909
  placementPolicy: "least-loaded" | "round-robin" | "random";
2818
2910
  parentCells: string[];
@@ -3136,6 +3228,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
3136
3228
  policy?: "least-loaded" | "round-robin" | "random" | undefined;
3137
3229
  }> | undefined;
3138
3230
  }>>;
3231
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
3139
3232
  } & {
3140
3233
  orgId: zod.ZodString;
3141
3234
  projectId: zod.ZodString;
@@ -3153,6 +3246,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
3153
3246
  placementPolicy: "least-loaded" | "round-robin" | "random";
3154
3247
  parentCells: string[];
3155
3248
  displayName?: string | undefined;
3249
+ labels?: Record<string, string> | undefined;
3156
3250
  targetSelector?: {
3157
3251
  primary: {
3158
3252
  set: string;
@@ -3205,6 +3299,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
3205
3299
  metric: string;
3206
3300
  aggregate: "max" | "sum" | "avg" | "min";
3207
3301
  }[] | undefined;
3302
+ labels?: Record<string, string> | undefined;
3208
3303
  placementPolicy?: "least-loaded" | "round-robin" | "random" | undefined;
3209
3304
  parentCells?: string[] | undefined;
3210
3305
  targetSelector?: {
@@ -3301,6 +3396,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
3301
3396
  };
3302
3397
  } | undefined;
3303
3398
  } | null;
3399
+ labels: {
3400
+ [x: string]: string;
3401
+ };
3304
3402
  createdAt: string;
3305
3403
  updatedAt: string;
3306
3404
  }>;
@@ -3423,8 +3521,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
3423
3521
  envId: string;
3424
3522
  state: string;
3425
3523
  properties: hono_utils_types.JSONValue;
3426
- entityTypeName: string;
3427
3524
  labels: hono_utils_types.JSONValue;
3525
+ entityTypeName: string;
3428
3526
  lastSyncedAt: string | null;
3429
3527
  syncSource: string | null;
3430
3528
  };
@@ -3927,8 +4025,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
3927
4025
  properties: Record<string, unknown>;
3928
4026
  relationshipType: string;
3929
4027
  kind: "Relationship";
3930
- to: string;
3931
4028
  labels: Record<string, string>;
4029
+ to: string;
3932
4030
  state?: string | undefined;
3933
4031
  }, {
3934
4032
  from: string;
@@ -4345,6 +4443,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
4345
4443
  webhookSecret?: string | undefined;
4346
4444
  body?: string | undefined;
4347
4445
  title?: string | undefined;
4446
+ labels?: string[] | undefined;
4348
4447
  auth?: {
4349
4448
  token: string;
4350
4449
  type: "token";
@@ -4369,7 +4468,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
4369
4468
  value?: hono_utils_types.JSONValue | undefined;
4370
4469
  } | undefined;
4371
4470
  }[] | undefined;
4372
- labels?: string[] | undefined;
4373
4471
  reviewers?: string[] | undefined;
4374
4472
  teamReviewers?: string[] | undefined;
4375
4473
  postMergeDispatch?: {
@@ -4848,6 +4946,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
4848
4946
  webhookSecret?: string | undefined;
4849
4947
  body?: string | undefined;
4850
4948
  title?: string | undefined;
4949
+ labels?: string[] | undefined;
4851
4950
  auth?: {
4852
4951
  token: string;
4853
4952
  type: "token";
@@ -4872,7 +4971,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
4872
4971
  value?: hono_utils_types.JSONValue | undefined;
4873
4972
  } | undefined;
4874
4973
  }[] | undefined;
4875
- labels?: string[] | undefined;
4876
4974
  reviewers?: string[] | undefined;
4877
4975
  teamReviewers?: string[] | undefined;
4878
4976
  postMergeDispatch?: {
@@ -5811,8 +5909,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
5811
5909
  }[];
5812
5910
  webhookSecret?: string | undefined;
5813
5911
  body?: string | undefined;
5814
- base?: string | undefined;
5815
5912
  labels?: string[] | undefined;
5913
+ base?: string | undefined;
5816
5914
  reviewers?: string[] | undefined;
5817
5915
  teamReviewers?: string[] | undefined;
5818
5916
  postMergeDispatch?: {
@@ -6097,8 +6195,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6097
6195
  }[];
6098
6196
  webhookSecret?: string | undefined;
6099
6197
  body?: string | undefined;
6100
- base?: string | undefined;
6101
6198
  labels?: string[] | undefined;
6199
+ base?: string | undefined;
6102
6200
  reviewers?: string[] | undefined;
6103
6201
  teamReviewers?: string[] | undefined;
6104
6202
  }>>;
@@ -6201,8 +6299,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6201
6299
  }[];
6202
6300
  webhookSecret?: string | undefined;
6203
6301
  body?: string | undefined;
6204
- base?: string | undefined;
6205
6302
  labels?: string[] | undefined;
6303
+ base?: string | undefined;
6206
6304
  reviewers?: string[] | undefined;
6207
6305
  teamReviewers?: string[] | undefined;
6208
6306
  } | undefined;
@@ -6509,8 +6607,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6509
6607
  }[];
6510
6608
  webhookSecret?: string | undefined;
6511
6609
  body?: string | undefined;
6512
- base?: string | undefined;
6513
6610
  labels?: string[] | undefined;
6611
+ base?: string | undefined;
6514
6612
  reviewers?: string[] | undefined;
6515
6613
  teamReviewers?: string[] | undefined;
6516
6614
  postMergeDispatch?: {
@@ -6581,8 +6679,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6581
6679
  }[];
6582
6680
  webhookSecret?: string | undefined;
6583
6681
  body?: string | undefined;
6584
- base?: string | undefined;
6585
6682
  labels?: string[] | undefined;
6683
+ base?: string | undefined;
6586
6684
  reviewers?: string[] | undefined;
6587
6685
  teamReviewers?: string[] | undefined;
6588
6686
  } | undefined;
@@ -6877,6 +6975,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6877
6975
  webhookSecret?: string | undefined;
6878
6976
  body?: string | undefined;
6879
6977
  title?: string | undefined;
6978
+ labels?: string[] | undefined;
6880
6979
  auth?: {
6881
6980
  token: string;
6882
6981
  type: "token";
@@ -6901,7 +7000,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6901
7000
  value?: unknown;
6902
7001
  } | undefined;
6903
7002
  }[] | undefined;
6904
- labels?: string[] | undefined;
6905
7003
  reviewers?: string[] | undefined;
6906
7004
  teamReviewers?: string[] | undefined;
6907
7005
  postMergeDispatch?: {
@@ -6915,6 +7013,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6915
7013
  webhookSecret?: string | undefined;
6916
7014
  body?: string | undefined;
6917
7015
  title?: string | undefined;
7016
+ labels?: string[] | undefined;
6918
7017
  auth?: {
6919
7018
  token: string;
6920
7019
  type: "token";
@@ -6939,7 +7038,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
6939
7038
  } | undefined;
6940
7039
  operation?: "replace" | "patch" | undefined;
6941
7040
  }[] | undefined;
6942
- labels?: string[] | undefined;
6943
7041
  reviewers?: string[] | undefined;
6944
7042
  teamReviewers?: string[] | undefined;
6945
7043
  postMergeDispatch?: {
@@ -7223,8 +7321,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
7223
7321
  }[];
7224
7322
  webhookSecret?: string | undefined;
7225
7323
  body?: string | undefined;
7226
- base?: string | undefined;
7227
7324
  labels?: string[] | undefined;
7325
+ base?: string | undefined;
7228
7326
  reviewers?: string[] | undefined;
7229
7327
  teamReviewers?: string[] | undefined;
7230
7328
  }>>;
@@ -7327,8 +7425,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
7327
7425
  }[];
7328
7426
  webhookSecret?: string | undefined;
7329
7427
  body?: string | undefined;
7330
- base?: string | undefined;
7331
7428
  labels?: string[] | undefined;
7429
+ base?: string | undefined;
7332
7430
  reviewers?: string[] | undefined;
7333
7431
  teamReviewers?: string[] | undefined;
7334
7432
  } | undefined;
@@ -7755,6 +7853,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
7755
7853
  webhookSecret?: string | undefined;
7756
7854
  body?: string | undefined;
7757
7855
  title?: string | undefined;
7856
+ labels?: string[] | undefined;
7758
7857
  auth?: {
7759
7858
  token: string;
7760
7859
  type: "token";
@@ -7779,7 +7878,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
7779
7878
  value?: unknown;
7780
7879
  } | undefined;
7781
7880
  }[] | undefined;
7782
- labels?: string[] | undefined;
7783
7881
  reviewers?: string[] | undefined;
7784
7882
  teamReviewers?: string[] | undefined;
7785
7883
  postMergeDispatch?: {
@@ -8044,8 +8142,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
8044
8142
  }[];
8045
8143
  webhookSecret?: string | undefined;
8046
8144
  body?: string | undefined;
8047
- base?: string | undefined;
8048
8145
  labels?: string[] | undefined;
8146
+ base?: string | undefined;
8049
8147
  reviewers?: string[] | undefined;
8050
8148
  teamReviewers?: string[] | undefined;
8051
8149
  postMergeDispatch?: {
@@ -8116,8 +8214,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
8116
8214
  }[];
8117
8215
  webhookSecret?: string | undefined;
8118
8216
  body?: string | undefined;
8119
- base?: string | undefined;
8120
8217
  labels?: string[] | undefined;
8218
+ base?: string | undefined;
8121
8219
  reviewers?: string[] | undefined;
8122
8220
  teamReviewers?: string[] | undefined;
8123
8221
  } | undefined;
@@ -8200,6 +8298,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
8200
8298
  webhookSecret?: string | undefined;
8201
8299
  body?: string | undefined;
8202
8300
  title?: string | undefined;
8301
+ labels?: string[] | undefined;
8203
8302
  auth?: {
8204
8303
  token: string;
8205
8304
  type: "token";
@@ -8224,7 +8323,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
8224
8323
  } | undefined;
8225
8324
  operation?: "replace" | "patch" | undefined;
8226
8325
  }[] | undefined;
8227
- labels?: string[] | undefined;
8228
8326
  reviewers?: string[] | undefined;
8229
8327
  teamReviewers?: string[] | undefined;
8230
8328
  postMergeDispatch?: {
@@ -8294,8 +8392,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
8294
8392
  }[];
8295
8393
  webhookSecret?: string | undefined;
8296
8394
  body?: string | undefined;
8297
- base?: string | undefined;
8298
8395
  labels?: string[] | undefined;
8396
+ base?: string | undefined;
8299
8397
  reviewers?: string[] | undefined;
8300
8398
  teamReviewers?: string[] | undefined;
8301
8399
  } | undefined;
@@ -8681,6 +8779,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
8681
8779
  webhookSecret?: string | undefined;
8682
8780
  body?: string | undefined;
8683
8781
  title?: string | undefined;
8782
+ labels?: string[] | undefined;
8684
8783
  auth?: {
8685
8784
  token: string;
8686
8785
  type: "token";
@@ -8705,7 +8804,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
8705
8804
  value?: hono_utils_types.JSONValue | undefined;
8706
8805
  } | undefined;
8707
8806
  }[] | undefined;
8708
- labels?: string[] | undefined;
8709
8807
  reviewers?: string[] | undefined;
8710
8808
  teamReviewers?: string[] | undefined;
8711
8809
  postMergeDispatch?: {
@@ -9644,8 +9742,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
9644
9742
  }[];
9645
9743
  webhookSecret?: string | undefined;
9646
9744
  body?: string | undefined;
9647
- base?: string | undefined;
9648
9745
  labels?: string[] | undefined;
9746
+ base?: string | undefined;
9649
9747
  reviewers?: string[] | undefined;
9650
9748
  teamReviewers?: string[] | undefined;
9651
9749
  postMergeDispatch?: {
@@ -9930,8 +10028,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
9930
10028
  }[];
9931
10029
  webhookSecret?: string | undefined;
9932
10030
  body?: string | undefined;
9933
- base?: string | undefined;
9934
10031
  labels?: string[] | undefined;
10032
+ base?: string | undefined;
9935
10033
  reviewers?: string[] | undefined;
9936
10034
  teamReviewers?: string[] | undefined;
9937
10035
  }>>;
@@ -10034,8 +10132,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
10034
10132
  }[];
10035
10133
  webhookSecret?: string | undefined;
10036
10134
  body?: string | undefined;
10037
- base?: string | undefined;
10038
10135
  labels?: string[] | undefined;
10136
+ base?: string | undefined;
10039
10137
  reviewers?: string[] | undefined;
10040
10138
  teamReviewers?: string[] | undefined;
10041
10139
  } | undefined;
@@ -10342,8 +10440,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
10342
10440
  }[];
10343
10441
  webhookSecret?: string | undefined;
10344
10442
  body?: string | undefined;
10345
- base?: string | undefined;
10346
10443
  labels?: string[] | undefined;
10444
+ base?: string | undefined;
10347
10445
  reviewers?: string[] | undefined;
10348
10446
  teamReviewers?: string[] | undefined;
10349
10447
  postMergeDispatch?: {
@@ -10414,8 +10512,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
10414
10512
  }[];
10415
10513
  webhookSecret?: string | undefined;
10416
10514
  body?: string | undefined;
10417
- base?: string | undefined;
10418
10515
  labels?: string[] | undefined;
10516
+ base?: string | undefined;
10419
10517
  reviewers?: string[] | undefined;
10420
10518
  teamReviewers?: string[] | undefined;
10421
10519
  } | undefined;
@@ -10710,6 +10808,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
10710
10808
  webhookSecret?: string | undefined;
10711
10809
  body?: string | undefined;
10712
10810
  title?: string | undefined;
10811
+ labels?: string[] | undefined;
10713
10812
  auth?: {
10714
10813
  token: string;
10715
10814
  type: "token";
@@ -10734,7 +10833,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
10734
10833
  value?: unknown;
10735
10834
  } | undefined;
10736
10835
  }[] | undefined;
10737
- labels?: string[] | undefined;
10738
10836
  reviewers?: string[] | undefined;
10739
10837
  teamReviewers?: string[] | undefined;
10740
10838
  postMergeDispatch?: {
@@ -10748,6 +10846,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
10748
10846
  webhookSecret?: string | undefined;
10749
10847
  body?: string | undefined;
10750
10848
  title?: string | undefined;
10849
+ labels?: string[] | undefined;
10751
10850
  auth?: {
10752
10851
  token: string;
10753
10852
  type: "token";
@@ -10772,7 +10871,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
10772
10871
  } | undefined;
10773
10872
  operation?: "replace" | "patch" | undefined;
10774
10873
  }[] | undefined;
10775
- labels?: string[] | undefined;
10776
10874
  reviewers?: string[] | undefined;
10777
10875
  teamReviewers?: string[] | undefined;
10778
10876
  postMergeDispatch?: {
@@ -11056,8 +11154,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
11056
11154
  }[];
11057
11155
  webhookSecret?: string | undefined;
11058
11156
  body?: string | undefined;
11059
- base?: string | undefined;
11060
11157
  labels?: string[] | undefined;
11158
+ base?: string | undefined;
11061
11159
  reviewers?: string[] | undefined;
11062
11160
  teamReviewers?: string[] | undefined;
11063
11161
  }>>;
@@ -11160,8 +11258,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
11160
11258
  }[];
11161
11259
  webhookSecret?: string | undefined;
11162
11260
  body?: string | undefined;
11163
- base?: string | undefined;
11164
11261
  labels?: string[] | undefined;
11262
+ base?: string | undefined;
11165
11263
  reviewers?: string[] | undefined;
11166
11264
  teamReviewers?: string[] | undefined;
11167
11265
  } | undefined;
@@ -11588,6 +11686,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
11588
11686
  webhookSecret?: string | undefined;
11589
11687
  body?: string | undefined;
11590
11688
  title?: string | undefined;
11689
+ labels?: string[] | undefined;
11591
11690
  auth?: {
11592
11691
  token: string;
11593
11692
  type: "token";
@@ -11612,7 +11711,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
11612
11711
  value?: unknown;
11613
11712
  } | undefined;
11614
11713
  }[] | undefined;
11615
- labels?: string[] | undefined;
11616
11714
  reviewers?: string[] | undefined;
11617
11715
  teamReviewers?: string[] | undefined;
11618
11716
  postMergeDispatch?: {
@@ -11877,8 +11975,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
11877
11975
  }[];
11878
11976
  webhookSecret?: string | undefined;
11879
11977
  body?: string | undefined;
11880
- base?: string | undefined;
11881
11978
  labels?: string[] | undefined;
11979
+ base?: string | undefined;
11882
11980
  reviewers?: string[] | undefined;
11883
11981
  teamReviewers?: string[] | undefined;
11884
11982
  postMergeDispatch?: {
@@ -11949,8 +12047,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
11949
12047
  }[];
11950
12048
  webhookSecret?: string | undefined;
11951
12049
  body?: string | undefined;
11952
- base?: string | undefined;
11953
12050
  labels?: string[] | undefined;
12051
+ base?: string | undefined;
11954
12052
  reviewers?: string[] | undefined;
11955
12053
  teamReviewers?: string[] | undefined;
11956
12054
  } | undefined;
@@ -12033,6 +12131,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
12033
12131
  webhookSecret?: string | undefined;
12034
12132
  body?: string | undefined;
12035
12133
  title?: string | undefined;
12134
+ labels?: string[] | undefined;
12036
12135
  auth?: {
12037
12136
  token: string;
12038
12137
  type: "token";
@@ -12057,7 +12156,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
12057
12156
  } | undefined;
12058
12157
  operation?: "replace" | "patch" | undefined;
12059
12158
  }[] | undefined;
12060
- labels?: string[] | undefined;
12061
12159
  reviewers?: string[] | undefined;
12062
12160
  teamReviewers?: string[] | undefined;
12063
12161
  postMergeDispatch?: {
@@ -12127,8 +12225,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
12127
12225
  }[];
12128
12226
  webhookSecret?: string | undefined;
12129
12227
  body?: string | undefined;
12130
- base?: string | undefined;
12131
12228
  labels?: string[] | undefined;
12229
+ base?: string | undefined;
12132
12230
  reviewers?: string[] | undefined;
12133
12231
  teamReviewers?: string[] | undefined;
12134
12232
  } | undefined;
@@ -12514,6 +12612,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
12514
12612
  webhookSecret?: string | undefined;
12515
12613
  body?: string | undefined;
12516
12614
  title?: string | undefined;
12615
+ labels?: string[] | undefined;
12517
12616
  auth?: {
12518
12617
  token: string;
12519
12618
  type: "token";
@@ -12538,7 +12637,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
12538
12637
  value?: hono_utils_types.JSONValue | undefined;
12539
12638
  } | undefined;
12540
12639
  }[] | undefined;
12541
- labels?: string[] | undefined;
12542
12640
  reviewers?: string[] | undefined;
12543
12641
  teamReviewers?: string[] | undefined;
12544
12642
  postMergeDispatch?: {
@@ -12691,8 +12789,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
12691
12789
  status: "failed" | "pending" | "running" | "succeeded" | "cancelled" | "dispatching" | "blocked";
12692
12790
  id: string;
12693
12791
  createdAt: string;
12694
- error: string | null;
12695
12792
  metadata: hono_utils_types.JSONValue;
12793
+ error: string | null;
12696
12794
  output: hono_utils_types.JSONValue;
12697
12795
  orgId: string;
12698
12796
  projectId: string;
@@ -13084,6 +13182,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
13084
13182
  kind: "data" | "resource" | "module";
13085
13183
  address: string;
13086
13184
  }>, "many">>;
13185
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
13186
+ labelMappings: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
13087
13187
  }, "strip", zod.ZodTypeAny, {
13088
13188
  name: string;
13089
13189
  states: string[];
@@ -13131,6 +13231,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
13131
13231
  yellowSeconds?: number | undefined;
13132
13232
  } | undefined;
13133
13233
  applier?: string | undefined;
13234
+ labels?: Record<string, string> | undefined;
13235
+ labelMappings?: Record<string, string> | undefined;
13134
13236
  }, {
13135
13237
  name: string;
13136
13238
  states: string[];
@@ -13178,6 +13280,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
13178
13280
  yellowSeconds?: number | undefined;
13179
13281
  } | undefined;
13180
13282
  applier?: string | undefined;
13283
+ labels?: Record<string, string> | undefined;
13284
+ labelMappings?: Record<string, string> | undefined;
13181
13285
  }>, zod.ZodObject<{
13182
13286
  kind: zod.ZodLiteral<"Cell">;
13183
13287
  name: zod.ZodString;
@@ -13456,6 +13560,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
13456
13560
  policy?: "least-loaded" | "round-robin" | "random" | undefined;
13457
13561
  }> | undefined;
13458
13562
  }>>;
13563
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
13459
13564
  }, "strip", zod.ZodTypeAny, {
13460
13565
  name: string;
13461
13566
  entityType: string;
@@ -13468,6 +13573,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
13468
13573
  placementPolicy: "least-loaded" | "round-robin" | "random";
13469
13574
  parentCells: string[];
13470
13575
  displayName?: string | undefined;
13576
+ labels?: Record<string, string> | undefined;
13471
13577
  targetSelector?: {
13472
13578
  primary: {
13473
13579
  set: string;
@@ -13518,6 +13624,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
13518
13624
  metric: string;
13519
13625
  aggregate: "max" | "sum" | "avg" | "min";
13520
13626
  }[] | undefined;
13627
+ labels?: Record<string, string> | undefined;
13521
13628
  placementPolicy?: "least-loaded" | "round-robin" | "random" | undefined;
13522
13629
  parentCells?: string[] | undefined;
13523
13630
  targetSelector?: {
@@ -14496,8 +14603,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
14496
14603
  }[];
14497
14604
  webhookSecret?: string | undefined;
14498
14605
  body?: string | undefined;
14499
- base?: string | undefined;
14500
14606
  labels?: string[] | undefined;
14607
+ base?: string | undefined;
14501
14608
  reviewers?: string[] | undefined;
14502
14609
  teamReviewers?: string[] | undefined;
14503
14610
  postMergeDispatch?: {
@@ -14782,8 +14889,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
14782
14889
  }[];
14783
14890
  webhookSecret?: string | undefined;
14784
14891
  body?: string | undefined;
14785
- base?: string | undefined;
14786
14892
  labels?: string[] | undefined;
14893
+ base?: string | undefined;
14787
14894
  reviewers?: string[] | undefined;
14788
14895
  teamReviewers?: string[] | undefined;
14789
14896
  }>>;
@@ -14886,8 +14993,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
14886
14993
  }[];
14887
14994
  webhookSecret?: string | undefined;
14888
14995
  body?: string | undefined;
14889
- base?: string | undefined;
14890
14996
  labels?: string[] | undefined;
14997
+ base?: string | undefined;
14891
14998
  reviewers?: string[] | undefined;
14892
14999
  teamReviewers?: string[] | undefined;
14893
15000
  } | undefined;
@@ -15194,8 +15301,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
15194
15301
  }[];
15195
15302
  webhookSecret?: string | undefined;
15196
15303
  body?: string | undefined;
15197
- base?: string | undefined;
15198
15304
  labels?: string[] | undefined;
15305
+ base?: string | undefined;
15199
15306
  reviewers?: string[] | undefined;
15200
15307
  teamReviewers?: string[] | undefined;
15201
15308
  postMergeDispatch?: {
@@ -15266,8 +15373,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
15266
15373
  }[];
15267
15374
  webhookSecret?: string | undefined;
15268
15375
  body?: string | undefined;
15269
- base?: string | undefined;
15270
15376
  labels?: string[] | undefined;
15377
+ base?: string | undefined;
15271
15378
  reviewers?: string[] | undefined;
15272
15379
  teamReviewers?: string[] | undefined;
15273
15380
  } | undefined;
@@ -15562,6 +15669,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
15562
15669
  webhookSecret?: string | undefined;
15563
15670
  body?: string | undefined;
15564
15671
  title?: string | undefined;
15672
+ labels?: string[] | undefined;
15565
15673
  auth?: {
15566
15674
  token: string;
15567
15675
  type: "token";
@@ -15586,7 +15694,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
15586
15694
  value?: unknown;
15587
15695
  } | undefined;
15588
15696
  }[] | undefined;
15589
- labels?: string[] | undefined;
15590
15697
  reviewers?: string[] | undefined;
15591
15698
  teamReviewers?: string[] | undefined;
15592
15699
  postMergeDispatch?: {
@@ -15600,6 +15707,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
15600
15707
  webhookSecret?: string | undefined;
15601
15708
  body?: string | undefined;
15602
15709
  title?: string | undefined;
15710
+ labels?: string[] | undefined;
15603
15711
  auth?: {
15604
15712
  token: string;
15605
15713
  type: "token";
@@ -15624,7 +15732,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
15624
15732
  } | undefined;
15625
15733
  operation?: "replace" | "patch" | undefined;
15626
15734
  }[] | undefined;
15627
- labels?: string[] | undefined;
15628
15735
  reviewers?: string[] | undefined;
15629
15736
  teamReviewers?: string[] | undefined;
15630
15737
  postMergeDispatch?: {
@@ -15908,8 +16015,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
15908
16015
  }[];
15909
16016
  webhookSecret?: string | undefined;
15910
16017
  body?: string | undefined;
15911
- base?: string | undefined;
15912
16018
  labels?: string[] | undefined;
16019
+ base?: string | undefined;
15913
16020
  reviewers?: string[] | undefined;
15914
16021
  teamReviewers?: string[] | undefined;
15915
16022
  }>>;
@@ -16012,8 +16119,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16012
16119
  }[];
16013
16120
  webhookSecret?: string | undefined;
16014
16121
  body?: string | undefined;
16015
- base?: string | undefined;
16016
16122
  labels?: string[] | undefined;
16123
+ base?: string | undefined;
16017
16124
  reviewers?: string[] | undefined;
16018
16125
  teamReviewers?: string[] | undefined;
16019
16126
  } | undefined;
@@ -16435,6 +16542,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16435
16542
  webhookSecret?: string | undefined;
16436
16543
  body?: string | undefined;
16437
16544
  title?: string | undefined;
16545
+ labels?: string[] | undefined;
16438
16546
  auth?: {
16439
16547
  token: string;
16440
16548
  type: "token";
@@ -16459,7 +16567,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16459
16567
  value?: unknown;
16460
16568
  } | undefined;
16461
16569
  }[] | undefined;
16462
- labels?: string[] | undefined;
16463
16570
  reviewers?: string[] | undefined;
16464
16571
  teamReviewers?: string[] | undefined;
16465
16572
  postMergeDispatch?: {
@@ -16722,8 +16829,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16722
16829
  }[];
16723
16830
  webhookSecret?: string | undefined;
16724
16831
  body?: string | undefined;
16725
- base?: string | undefined;
16726
16832
  labels?: string[] | undefined;
16833
+ base?: string | undefined;
16727
16834
  reviewers?: string[] | undefined;
16728
16835
  teamReviewers?: string[] | undefined;
16729
16836
  postMergeDispatch?: {
@@ -16794,8 +16901,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16794
16901
  }[];
16795
16902
  webhookSecret?: string | undefined;
16796
16903
  body?: string | undefined;
16797
- base?: string | undefined;
16798
16904
  labels?: string[] | undefined;
16905
+ base?: string | undefined;
16799
16906
  reviewers?: string[] | undefined;
16800
16907
  teamReviewers?: string[] | undefined;
16801
16908
  } | undefined;
@@ -16878,6 +16985,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16878
16985
  webhookSecret?: string | undefined;
16879
16986
  body?: string | undefined;
16880
16987
  title?: string | undefined;
16988
+ labels?: string[] | undefined;
16881
16989
  auth?: {
16882
16990
  token: string;
16883
16991
  type: "token";
@@ -16902,7 +17010,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16902
17010
  } | undefined;
16903
17011
  operation?: "replace" | "patch" | undefined;
16904
17012
  }[] | undefined;
16905
- labels?: string[] | undefined;
16906
17013
  reviewers?: string[] | undefined;
16907
17014
  teamReviewers?: string[] | undefined;
16908
17015
  postMergeDispatch?: {
@@ -16972,8 +17079,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
16972
17079
  }[];
16973
17080
  webhookSecret?: string | undefined;
16974
17081
  body?: string | undefined;
16975
- base?: string | undefined;
16976
17082
  labels?: string[] | undefined;
17083
+ base?: string | undefined;
16977
17084
  reviewers?: string[] | undefined;
16978
17085
  teamReviewers?: string[] | undefined;
16979
17086
  } | undefined;
@@ -17055,8 +17162,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17055
17162
  properties: Record<string, unknown>;
17056
17163
  relationshipType: string;
17057
17164
  kind: "Relationship";
17058
- to: string;
17059
17165
  labels: Record<string, string>;
17166
+ to: string;
17060
17167
  state?: string | undefined;
17061
17168
  }, {
17062
17169
  from: string;
@@ -17076,6 +17183,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17076
17183
  properties: zod.ZodDefault<zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
17077
17184
  capacity: zod.ZodOptional<zod.ZodNumber>;
17078
17185
  credentialRef: zod.ZodOptional<zod.ZodString>;
17186
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
17079
17187
  }, "strip", zod.ZodTypeAny, {
17080
17188
  name: string;
17081
17189
  properties: Record<string, string>;
@@ -17084,6 +17192,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17084
17192
  set?: string | undefined;
17085
17193
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
17086
17194
  displayName?: string | undefined;
17195
+ labels?: Record<string, string> | undefined;
17087
17196
  credentialRef?: string | undefined;
17088
17197
  capacity?: number | undefined;
17089
17198
  }, {
@@ -17093,6 +17202,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17093
17202
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
17094
17203
  displayName?: string | undefined;
17095
17204
  properties?: Record<string, string> | undefined;
17205
+ labels?: Record<string, string> | undefined;
17096
17206
  config?: Record<string, unknown> | undefined;
17097
17207
  credentialRef?: string | undefined;
17098
17208
  capacity?: number | undefined;
@@ -17102,13 +17212,17 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17102
17212
  displayName: zod.ZodOptional<zod.ZodString>;
17103
17213
  provider: zod.ZodEnum<["aws", "gcp", "s3-backend", "tfc-workspace", "generic"]>;
17104
17214
  properties: zod.ZodDefault<zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
17215
+ config: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodUnknown>>;
17105
17216
  credentialRef: zod.ZodOptional<zod.ZodString>;
17217
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
17106
17218
  }, "strip", zod.ZodTypeAny, {
17107
17219
  name: string;
17108
17220
  provider: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic";
17109
17221
  properties: Record<string, string>;
17110
17222
  kind: "DeploymentTargetSet";
17111
17223
  displayName?: string | undefined;
17224
+ labels?: Record<string, string> | undefined;
17225
+ config?: Record<string, unknown> | undefined;
17112
17226
  credentialRef?: string | undefined;
17113
17227
  }, {
17114
17228
  name: string;
@@ -17116,6 +17230,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17116
17230
  kind: "DeploymentTargetSet";
17117
17231
  displayName?: string | undefined;
17118
17232
  properties?: Record<string, string> | undefined;
17233
+ labels?: Record<string, string> | undefined;
17234
+ config?: Record<string, unknown> | undefined;
17119
17235
  credentialRef?: string | undefined;
17120
17236
  }>]>, "many">;
17121
17237
  force: zod.ZodDefault<zod.ZodOptional<zod.ZodBoolean>>;
@@ -17456,6 +17572,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17456
17572
  webhookSecret?: string | undefined;
17457
17573
  body?: string | undefined;
17458
17574
  title?: string | undefined;
17575
+ labels?: string[] | undefined;
17459
17576
  auth?: {
17460
17577
  token: string;
17461
17578
  type: "token";
@@ -17480,7 +17597,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17480
17597
  value?: unknown;
17481
17598
  } | undefined;
17482
17599
  }[] | undefined;
17483
- labels?: string[] | undefined;
17484
17600
  reviewers?: string[] | undefined;
17485
17601
  teamReviewers?: string[] | undefined;
17486
17602
  postMergeDispatch?: {
@@ -17628,6 +17744,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17628
17744
  yellowSeconds?: number | undefined;
17629
17745
  } | undefined;
17630
17746
  applier?: string | undefined;
17747
+ labels?: Record<string, string> | undefined;
17748
+ labelMappings?: Record<string, string> | undefined;
17631
17749
  } | {
17632
17750
  name: string;
17633
17751
  entityType: string;
@@ -17640,6 +17758,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17640
17758
  placementPolicy: "least-loaded" | "round-robin" | "random";
17641
17759
  parentCells: string[];
17642
17760
  displayName?: string | undefined;
17761
+ labels?: Record<string, string> | undefined;
17643
17762
  targetSelector?: {
17644
17763
  primary: {
17645
17764
  set: string;
@@ -17724,8 +17843,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17724
17843
  properties: Record<string, unknown>;
17725
17844
  relationshipType: string;
17726
17845
  kind: "Relationship";
17727
- to: string;
17728
17846
  labels: Record<string, string>;
17847
+ to: string;
17729
17848
  state?: string | undefined;
17730
17849
  } | {
17731
17850
  name: string;
@@ -17735,6 +17854,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17735
17854
  set?: string | undefined;
17736
17855
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
17737
17856
  displayName?: string | undefined;
17857
+ labels?: Record<string, string> | undefined;
17738
17858
  credentialRef?: string | undefined;
17739
17859
  capacity?: number | undefined;
17740
17860
  } | {
@@ -17743,6 +17863,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17743
17863
  properties: Record<string, string>;
17744
17864
  kind: "DeploymentTargetSet";
17745
17865
  displayName?: string | undefined;
17866
+ labels?: Record<string, string> | undefined;
17867
+ config?: Record<string, unknown> | undefined;
17746
17868
  credentialRef?: string | undefined;
17747
17869
  })[];
17748
17870
  deletions: {
@@ -17917,8 +18039,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17917
18039
  }[];
17918
18040
  webhookSecret?: string | undefined;
17919
18041
  body?: string | undefined;
17920
- base?: string | undefined;
17921
18042
  labels?: string[] | undefined;
18043
+ base?: string | undefined;
17922
18044
  reviewers?: string[] | undefined;
17923
18045
  teamReviewers?: string[] | undefined;
17924
18046
  postMergeDispatch?: {
@@ -17989,8 +18111,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
17989
18111
  }[];
17990
18112
  webhookSecret?: string | undefined;
17991
18113
  body?: string | undefined;
17992
- base?: string | undefined;
17993
18114
  labels?: string[] | undefined;
18115
+ base?: string | undefined;
17994
18116
  reviewers?: string[] | undefined;
17995
18117
  teamReviewers?: string[] | undefined;
17996
18118
  } | undefined;
@@ -18073,6 +18195,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18073
18195
  webhookSecret?: string | undefined;
18074
18196
  body?: string | undefined;
18075
18197
  title?: string | undefined;
18198
+ labels?: string[] | undefined;
18076
18199
  auth?: {
18077
18200
  token: string;
18078
18201
  type: "token";
@@ -18097,7 +18220,6 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18097
18220
  } | undefined;
18098
18221
  operation?: "replace" | "patch" | undefined;
18099
18222
  }[] | undefined;
18100
- labels?: string[] | undefined;
18101
18223
  reviewers?: string[] | undefined;
18102
18224
  teamReviewers?: string[] | undefined;
18103
18225
  postMergeDispatch?: {
@@ -18167,8 +18289,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18167
18289
  }[];
18168
18290
  webhookSecret?: string | undefined;
18169
18291
  body?: string | undefined;
18170
- base?: string | undefined;
18171
18292
  labels?: string[] | undefined;
18293
+ base?: string | undefined;
18172
18294
  reviewers?: string[] | undefined;
18173
18295
  teamReviewers?: string[] | undefined;
18174
18296
  } | undefined;
@@ -18245,6 +18367,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18245
18367
  yellowSeconds?: number | undefined;
18246
18368
  } | undefined;
18247
18369
  applier?: string | undefined;
18370
+ labels?: Record<string, string> | undefined;
18371
+ labelMappings?: Record<string, string> | undefined;
18248
18372
  } | {
18249
18373
  name: string;
18250
18374
  entityType: string;
@@ -18255,6 +18379,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18255
18379
  metric: string;
18256
18380
  aggregate: "max" | "sum" | "avg" | "min";
18257
18381
  }[] | undefined;
18382
+ labels?: Record<string, string> | undefined;
18258
18383
  placementPolicy?: "least-loaded" | "round-robin" | "random" | undefined;
18259
18384
  parentCells?: string[] | undefined;
18260
18385
  targetSelector?: {
@@ -18351,6 +18476,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18351
18476
  provider?: "aws" | "gcp" | "s3-backend" | "tfc-workspace" | "generic" | undefined;
18352
18477
  displayName?: string | undefined;
18353
18478
  properties?: Record<string, string> | undefined;
18479
+ labels?: Record<string, string> | undefined;
18354
18480
  config?: Record<string, unknown> | undefined;
18355
18481
  credentialRef?: string | undefined;
18356
18482
  capacity?: number | undefined;
@@ -18360,6 +18486,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18360
18486
  kind: "DeploymentTargetSet";
18361
18487
  displayName?: string | undefined;
18362
18488
  properties?: Record<string, string> | undefined;
18489
+ labels?: Record<string, string> | undefined;
18490
+ config?: Record<string, unknown> | undefined;
18363
18491
  credentialRef?: string | undefined;
18364
18492
  })[];
18365
18493
  deletions?: {
@@ -18408,14 +18536,17 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18408
18536
  orgId: zod.ZodString;
18409
18537
  projectId: zod.ZodString;
18410
18538
  limit: zod.ZodOptional<zod.ZodNumber>;
18539
+ before: zod.ZodOptional<zod.ZodString>;
18411
18540
  }, "strip", zod.ZodTypeAny, {
18412
18541
  orgId: string;
18413
18542
  projectId: string;
18414
18543
  limit?: number | undefined;
18544
+ before?: string | undefined;
18415
18545
  }, {
18416
18546
  orgId: string;
18417
18547
  projectId: string;
18418
18548
  limit?: number | undefined;
18549
+ before?: string | undefined;
18419
18550
  }>, {
18420
18551
  id: string;
18421
18552
  projectId: string | null;
@@ -18527,6 +18658,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18527
18658
  action: zod.ZodOptional<zod.ZodString>;
18528
18659
  resourceKind: zod.ZodOptional<zod.ZodString>;
18529
18660
  since: zod.ZodOptional<zod.ZodString>;
18661
+ before: zod.ZodOptional<zod.ZodString>;
18530
18662
  limit: zod.ZodOptional<zod.ZodNumber>;
18531
18663
  }, "strip", zod.ZodTypeAny, {
18532
18664
  orgId: string;
@@ -18537,6 +18669,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18537
18669
  actorId?: string | undefined;
18538
18670
  action?: string | undefined;
18539
18671
  resourceKind?: string | undefined;
18672
+ before?: string | undefined;
18540
18673
  since?: string | undefined;
18541
18674
  }, {
18542
18675
  orgId: string;
@@ -18547,6 +18680,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18547
18680
  actorId?: string | undefined;
18548
18681
  action?: string | undefined;
18549
18682
  resourceKind?: string | undefined;
18683
+ before?: string | undefined;
18550
18684
  since?: string | undefined;
18551
18685
  }>, {
18552
18686
  id: string;
@@ -18576,6 +18710,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18576
18710
  kind: zod.ZodOptional<zod.ZodString>;
18577
18711
  entityName: zod.ZodOptional<zod.ZodString>;
18578
18712
  since: zod.ZodOptional<zod.ZodString>;
18713
+ before: zod.ZodOptional<zod.ZodString>;
18579
18714
  limit: zod.ZodOptional<zod.ZodNumber>;
18580
18715
  }, "strip", zod.ZodTypeAny, {
18581
18716
  orgId: string;
@@ -18585,6 +18720,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18585
18720
  limit?: number | undefined;
18586
18721
  kind?: string | undefined;
18587
18722
  entityName?: string | undefined;
18723
+ before?: string | undefined;
18588
18724
  since?: string | undefined;
18589
18725
  }, {
18590
18726
  orgId: string;
@@ -18594,6 +18730,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18594
18730
  limit?: number | undefined;
18595
18731
  kind?: string | undefined;
18596
18732
  entityName?: string | undefined;
18733
+ before?: string | undefined;
18597
18734
  since?: string | undefined;
18598
18735
  }>, {
18599
18736
  detectedAt: string;
@@ -18866,6 +19003,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18866
19003
  labels: {
18867
19004
  [x: string]: string[];
18868
19005
  };
19006
+ relationshipTypes?: string[] | undefined;
19007
+ cellNames?: string[] | undefined;
18869
19008
  };
18870
19009
  grouping: {
18871
19010
  cellsEnabled: boolean;
@@ -18923,6 +19062,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
18923
19062
  labels: {
18924
19063
  [x: string]: string[];
18925
19064
  };
19065
+ relationshipTypes?: string[] | undefined;
19066
+ cellNames?: string[] | undefined;
18926
19067
  };
18927
19068
  grouping: {
18928
19069
  cellsEnabled: boolean;
@@ -19005,6 +19146,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
19005
19146
  labels: {
19006
19147
  [x: string]: string[];
19007
19148
  };
19149
+ relationshipTypes?: string[] | undefined;
19150
+ cellNames?: string[] | undefined;
19008
19151
  };
19009
19152
  grouping: {
19010
19153
  cellsEnabled: boolean;
@@ -19085,6 +19228,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
19085
19228
  labels: {
19086
19229
  [x: string]: string[];
19087
19230
  };
19231
+ relationshipTypes?: string[] | undefined;
19232
+ cellNames?: string[] | undefined;
19088
19233
  };
19089
19234
  grouping: {
19090
19235
  cellsEnabled: boolean;
@@ -19158,6 +19303,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
19158
19303
  labels: {
19159
19304
  [x: string]: string[];
19160
19305
  };
19306
+ relationshipTypes?: string[] | undefined;
19307
+ cellNames?: string[] | undefined;
19161
19308
  };
19162
19309
  grouping: {
19163
19310
  cellsEnabled: boolean;
@@ -19724,6 +19871,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
19724
19871
  };
19725
19872
  } | undefined;
19726
19873
  } | null;
19874
+ labels: {
19875
+ [x: string]: string;
19876
+ };
19727
19877
  createdAt: string;
19728
19878
  updatedAt: string;
19729
19879
  }[]>;
@@ -19793,6 +19943,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
19793
19943
  };
19794
19944
  } | undefined;
19795
19945
  } | null;
19946
+ labels: {
19947
+ [x: string]: string;
19948
+ };
19796
19949
  createdAt: string;
19797
19950
  updatedAt: string;
19798
19951
  }>;
@@ -20074,6 +20227,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20074
20227
  policy?: "least-loaded" | "round-robin" | "random" | undefined;
20075
20228
  }> | undefined;
20076
20229
  }>>;
20230
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
20077
20231
  } & {
20078
20232
  orgId: zod.ZodString;
20079
20233
  projectId: zod.ZodString;
@@ -20091,6 +20245,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20091
20245
  placementPolicy: "least-loaded" | "round-robin" | "random";
20092
20246
  parentCells: string[];
20093
20247
  displayName?: string | undefined;
20248
+ labels?: Record<string, string> | undefined;
20094
20249
  targetSelector?: {
20095
20250
  primary: {
20096
20251
  set: string;
@@ -20143,6 +20298,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20143
20298
  metric: string;
20144
20299
  aggregate: "max" | "sum" | "avg" | "min";
20145
20300
  }[] | undefined;
20301
+ labels?: Record<string, string> | undefined;
20146
20302
  placementPolicy?: "least-loaded" | "round-robin" | "random" | undefined;
20147
20303
  parentCells?: string[] | undefined;
20148
20304
  targetSelector?: {
@@ -20197,6 +20353,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20197
20353
  metric: string;
20198
20354
  aggregate: "max" | "sum" | "avg" | "min";
20199
20355
  }[];
20356
+ labels: {
20357
+ [x: string]: string;
20358
+ };
20200
20359
  entityTypeName: string;
20201
20360
  placementPolicy: "least-loaded" | "round-robin" | "random";
20202
20361
  parentCells: string[];
@@ -20520,6 +20679,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20520
20679
  policy?: "least-loaded" | "round-robin" | "random" | undefined;
20521
20680
  }> | undefined;
20522
20681
  }>>;
20682
+ labels: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
20523
20683
  } & {
20524
20684
  orgId: zod.ZodString;
20525
20685
  projectId: zod.ZodString;
@@ -20537,6 +20697,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20537
20697
  placementPolicy: "least-loaded" | "round-robin" | "random";
20538
20698
  parentCells: string[];
20539
20699
  displayName?: string | undefined;
20700
+ labels?: Record<string, string> | undefined;
20540
20701
  targetSelector?: {
20541
20702
  primary: {
20542
20703
  set: string;
@@ -20589,6 +20750,7 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20589
20750
  metric: string;
20590
20751
  aggregate: "max" | "sum" | "avg" | "min";
20591
20752
  }[] | undefined;
20753
+ labels?: Record<string, string> | undefined;
20592
20754
  placementPolicy?: "least-loaded" | "round-robin" | "random" | undefined;
20593
20755
  parentCells?: string[] | undefined;
20594
20756
  targetSelector?: {
@@ -20685,6 +20847,9 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20685
20847
  };
20686
20848
  } | undefined;
20687
20849
  } | null;
20850
+ labels: {
20851
+ [x: string]: string;
20852
+ };
20688
20853
  createdAt: string;
20689
20854
  updatedAt: string;
20690
20855
  }>;
@@ -20807,8 +20972,8 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20807
20972
  envId: string;
20808
20973
  state: string;
20809
20974
  properties: hono_utils_types.JSONValue;
20810
- entityTypeName: string;
20811
20975
  labels: hono_utils_types.JSONValue;
20976
+ entityTypeName: string;
20812
20977
  lastSyncedAt: string | null;
20813
20978
  syncSource: string | null;
20814
20979
  };
@@ -20821,14 +20986,17 @@ declare const createLocalClient: (options?: CreateLocalClientOptions) => {
20821
20986
  orgId: zod.ZodString;
20822
20987
  projectId: zod.ZodString;
20823
20988
  limit: zod.ZodOptional<zod.ZodNumber>;
20989
+ before: zod.ZodOptional<zod.ZodString>;
20824
20990
  }, "strip", zod.ZodTypeAny, {
20825
20991
  orgId: string;
20826
20992
  projectId: string;
20827
20993
  limit?: number | undefined;
20994
+ before?: string | undefined;
20828
20995
  }, {
20829
20996
  orgId: string;
20830
20997
  projectId: string;
20831
20998
  limit?: number | undefined;
20999
+ before?: string | undefined;
20832
21000
  }>, {
20833
21001
  id: string;
20834
21002
  projectId: string | null;