@treeseed/sdk 0.13.0-rc.33 → 0.13.0-rc.35

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.
@@ -172,15 +172,15 @@ export declare const discussionTopicContentSchema: z.ZodObject<{
172
172
  status: "active" | "archived";
173
173
  id: string;
174
174
  description: string;
175
- title: string;
176
175
  slug: string;
176
+ title: string;
177
177
  groupIds: string[];
178
178
  parentTopicId?: string | undefined;
179
179
  }, {
180
180
  id: string;
181
181
  description: string;
182
- title: string;
183
182
  slug: string;
183
+ title: string;
184
184
  groupIds: string[];
185
185
  status?: "active" | "archived" | undefined;
186
186
  parentTopicId?: string | undefined;
@@ -842,15 +842,15 @@ export declare const agentOperationalContentSchemas: {
842
842
  status: "active" | "archived";
843
843
  id: string;
844
844
  description: string;
845
- title: string;
846
845
  slug: string;
846
+ title: string;
847
847
  groupIds: string[];
848
848
  parentTopicId?: string | undefined;
849
849
  }, {
850
850
  id: string;
851
851
  description: string;
852
- title: string;
853
852
  slug: string;
853
+ title: string;
854
854
  groupIds: string[];
855
855
  status?: "active" | "archived" | undefined;
856
856
  parentTopicId?: string | undefined;
@@ -37,8 +37,8 @@ export declare const workdayContentSchema: z.ZodObject<{
37
37
  priority: number;
38
38
  status?: string | undefined;
39
39
  reason?: string | undefined;
40
- title?: string | undefined;
41
40
  slug?: string | undefined;
41
+ title?: string | undefined;
42
42
  estimatedCredits?: number | undefined;
43
43
  }, {
44
44
  id: string;
@@ -46,8 +46,8 @@ export declare const workdayContentSchema: z.ZodObject<{
46
46
  priority: number;
47
47
  status?: string | undefined;
48
48
  reason?: string | undefined;
49
- title?: string | undefined;
50
49
  slug?: string | undefined;
50
+ title?: string | undefined;
51
51
  estimatedCredits?: number | undefined;
52
52
  }>, "many">>;
53
53
  totalTasks: z.ZodDefault<z.ZodNumber>;
@@ -138,14 +138,14 @@ export declare const workdayContentSchema: z.ZodObject<{
138
138
  metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
139
139
  }, "strip", z.ZodTypeAny, {
140
140
  status: string;
141
+ environment: string;
141
142
  visibility: "private" | "team" | "public" | "authenticated";
142
143
  summary: string;
143
144
  projectId: string;
144
- title: string;
145
- startedAt: Date;
146
145
  slug: string;
147
146
  metadata: Record<string, unknown>;
148
- environment: string;
147
+ title: string;
148
+ startedAt: Date;
149
149
  changedFiles: string[];
150
150
  workDayId: string;
151
151
  reportVersion: string;
@@ -163,8 +163,8 @@ export declare const workdayContentSchema: z.ZodObject<{
163
163
  priority: number;
164
164
  status?: string | undefined;
165
165
  reason?: string | undefined;
166
- title?: string | undefined;
167
166
  slug?: string | undefined;
167
+ title?: string | undefined;
168
168
  estimatedCredits?: number | undefined;
169
169
  }[];
170
170
  totalTasks: number;
@@ -206,12 +206,12 @@ export declare const workdayContentSchema: z.ZodObject<{
206
206
  endedAt?: Date | null | undefined;
207
207
  prioritySnapshotId?: string | null | undefined;
208
208
  }, {
209
+ environment: string;
209
210
  summary: string;
210
211
  projectId: string;
212
+ slug: string;
211
213
  title: string;
212
214
  startedAt: Date;
213
- slug: string;
214
- environment: string;
215
215
  workDayId: string;
216
216
  reportVersion: string;
217
217
  workdayState: string;
@@ -236,8 +236,8 @@ export declare const workdayContentSchema: z.ZodObject<{
236
236
  priority: number;
237
237
  status?: string | undefined;
238
238
  reason?: string | undefined;
239
- title?: string | undefined;
240
239
  slug?: string | undefined;
240
+ title?: string | undefined;
241
241
  estimatedCredits?: number | undefined;
242
242
  }[] | undefined;
243
243
  totalTasks?: number | undefined;
@@ -316,15 +316,15 @@ export declare const templateProductContentSchema: z.ZodObject<{
316
316
  integrity: z.ZodOptional<z.ZodString>;
317
317
  }, "strip", z.ZodTypeAny, {
318
318
  kind: "git";
319
+ ref: string;
319
320
  repoUrl: string;
320
321
  directory: string;
321
- ref: string;
322
322
  integrity?: string | undefined;
323
323
  }, {
324
324
  kind: "git";
325
+ ref: string;
325
326
  repoUrl: string;
326
327
  directory: string;
327
- ref: string;
328
328
  integrity?: string | undefined;
329
329
  }>, z.ZodObject<{
330
330
  kind: z.ZodLiteral<"r2">;
@@ -354,9 +354,9 @@ export declare const templateProductContentSchema: z.ZodObject<{
354
354
  mode: "packaged" | "git" | "r2";
355
355
  source: {
356
356
  kind: "git";
357
+ ref: string;
357
358
  repoUrl: string;
358
359
  directory: string;
359
- ref: string;
360
360
  integrity?: string | undefined;
361
361
  } | {
362
362
  kind: "r2";
@@ -371,9 +371,9 @@ export declare const templateProductContentSchema: z.ZodObject<{
371
371
  }, {
372
372
  source: {
373
373
  kind: "git";
374
+ ref: string;
374
375
  repoUrl: string;
375
376
  directory: string;
376
- ref: string;
377
377
  integrity?: string | undefined;
378
378
  } | {
379
379
  kind: "r2";
@@ -408,8 +408,8 @@ export declare const templateProductContentSchema: z.ZodObject<{
408
408
  audience: string[];
409
409
  description: string;
410
410
  summary: string;
411
- title: string;
412
411
  slug: string;
412
+ title: string;
413
413
  groupIds: string[];
414
414
  featured: boolean;
415
415
  listingEnabled: boolean;
@@ -428,9 +428,9 @@ export declare const templateProductContentSchema: z.ZodObject<{
428
428
  mode: "packaged" | "git" | "r2";
429
429
  source: {
430
430
  kind: "git";
431
+ ref: string;
431
432
  repoUrl: string;
432
433
  directory: string;
433
- ref: string;
434
434
  integrity?: string | undefined;
435
435
  } | {
436
436
  kind: "r2";
@@ -457,8 +457,8 @@ export declare const templateProductContentSchema: z.ZodObject<{
457
457
  status: "archived" | "draft" | "live";
458
458
  description: string;
459
459
  summary: string;
460
- title: string;
461
460
  slug: string;
461
+ title: string;
462
462
  category: string;
463
463
  publisher: {
464
464
  id: string;
@@ -472,9 +472,9 @@ export declare const templateProductContentSchema: z.ZodObject<{
472
472
  fulfillment: {
473
473
  source: {
474
474
  kind: "git";
475
+ ref: string;
475
476
  repoUrl: string;
476
477
  directory: string;
477
- ref: string;
478
478
  integrity?: string | undefined;
479
479
  } | {
480
480
  kind: "r2";
@@ -1245,8 +1245,8 @@ export declare const auxiliaryContentSchemas: {
1245
1245
  priority: number;
1246
1246
  status?: string | undefined;
1247
1247
  reason?: string | undefined;
1248
- title?: string | undefined;
1249
1248
  slug?: string | undefined;
1249
+ title?: string | undefined;
1250
1250
  estimatedCredits?: number | undefined;
1251
1251
  }, {
1252
1252
  id: string;
@@ -1254,8 +1254,8 @@ export declare const auxiliaryContentSchemas: {
1254
1254
  priority: number;
1255
1255
  status?: string | undefined;
1256
1256
  reason?: string | undefined;
1257
- title?: string | undefined;
1258
1257
  slug?: string | undefined;
1258
+ title?: string | undefined;
1259
1259
  estimatedCredits?: number | undefined;
1260
1260
  }>, "many">>;
1261
1261
  totalTasks: z.ZodDefault<z.ZodNumber>;
@@ -1346,14 +1346,14 @@ export declare const auxiliaryContentSchemas: {
1346
1346
  metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1347
1347
  }, "strip", z.ZodTypeAny, {
1348
1348
  status: string;
1349
+ environment: string;
1349
1350
  visibility: "private" | "team" | "public" | "authenticated";
1350
1351
  summary: string;
1351
1352
  projectId: string;
1352
- title: string;
1353
- startedAt: Date;
1354
1353
  slug: string;
1355
1354
  metadata: Record<string, unknown>;
1356
- environment: string;
1355
+ title: string;
1356
+ startedAt: Date;
1357
1357
  changedFiles: string[];
1358
1358
  workDayId: string;
1359
1359
  reportVersion: string;
@@ -1371,8 +1371,8 @@ export declare const auxiliaryContentSchemas: {
1371
1371
  priority: number;
1372
1372
  status?: string | undefined;
1373
1373
  reason?: string | undefined;
1374
- title?: string | undefined;
1375
1374
  slug?: string | undefined;
1375
+ title?: string | undefined;
1376
1376
  estimatedCredits?: number | undefined;
1377
1377
  }[];
1378
1378
  totalTasks: number;
@@ -1414,12 +1414,12 @@ export declare const auxiliaryContentSchemas: {
1414
1414
  endedAt?: Date | null | undefined;
1415
1415
  prioritySnapshotId?: string | null | undefined;
1416
1416
  }, {
1417
+ environment: string;
1417
1418
  summary: string;
1418
1419
  projectId: string;
1420
+ slug: string;
1419
1421
  title: string;
1420
1422
  startedAt: Date;
1421
- slug: string;
1422
- environment: string;
1423
1423
  workDayId: string;
1424
1424
  reportVersion: string;
1425
1425
  workdayState: string;
@@ -1444,8 +1444,8 @@ export declare const auxiliaryContentSchemas: {
1444
1444
  priority: number;
1445
1445
  status?: string | undefined;
1446
1446
  reason?: string | undefined;
1447
- title?: string | undefined;
1448
1447
  slug?: string | undefined;
1448
+ title?: string | undefined;
1449
1449
  estimatedCredits?: number | undefined;
1450
1450
  }[] | undefined;
1451
1451
  totalTasks?: number | undefined;
@@ -1524,15 +1524,15 @@ export declare const auxiliaryContentSchemas: {
1524
1524
  integrity: z.ZodOptional<z.ZodString>;
1525
1525
  }, "strip", z.ZodTypeAny, {
1526
1526
  kind: "git";
1527
+ ref: string;
1527
1528
  repoUrl: string;
1528
1529
  directory: string;
1529
- ref: string;
1530
1530
  integrity?: string | undefined;
1531
1531
  }, {
1532
1532
  kind: "git";
1533
+ ref: string;
1533
1534
  repoUrl: string;
1534
1535
  directory: string;
1535
- ref: string;
1536
1536
  integrity?: string | undefined;
1537
1537
  }>, z.ZodObject<{
1538
1538
  kind: z.ZodLiteral<"r2">;
@@ -1562,9 +1562,9 @@ export declare const auxiliaryContentSchemas: {
1562
1562
  mode: "packaged" | "git" | "r2";
1563
1563
  source: {
1564
1564
  kind: "git";
1565
+ ref: string;
1565
1566
  repoUrl: string;
1566
1567
  directory: string;
1567
- ref: string;
1568
1568
  integrity?: string | undefined;
1569
1569
  } | {
1570
1570
  kind: "r2";
@@ -1579,9 +1579,9 @@ export declare const auxiliaryContentSchemas: {
1579
1579
  }, {
1580
1580
  source: {
1581
1581
  kind: "git";
1582
+ ref: string;
1582
1583
  repoUrl: string;
1583
1584
  directory: string;
1584
- ref: string;
1585
1585
  integrity?: string | undefined;
1586
1586
  } | {
1587
1587
  kind: "r2";
@@ -1616,8 +1616,8 @@ export declare const auxiliaryContentSchemas: {
1616
1616
  audience: string[];
1617
1617
  description: string;
1618
1618
  summary: string;
1619
- title: string;
1620
1619
  slug: string;
1620
+ title: string;
1621
1621
  groupIds: string[];
1622
1622
  featured: boolean;
1623
1623
  listingEnabled: boolean;
@@ -1636,9 +1636,9 @@ export declare const auxiliaryContentSchemas: {
1636
1636
  mode: "packaged" | "git" | "r2";
1637
1637
  source: {
1638
1638
  kind: "git";
1639
+ ref: string;
1639
1640
  repoUrl: string;
1640
1641
  directory: string;
1641
- ref: string;
1642
1642
  integrity?: string | undefined;
1643
1643
  } | {
1644
1644
  kind: "r2";
@@ -1665,8 +1665,8 @@ export declare const auxiliaryContentSchemas: {
1665
1665
  status: "archived" | "draft" | "live";
1666
1666
  description: string;
1667
1667
  summary: string;
1668
- title: string;
1669
1668
  slug: string;
1669
+ title: string;
1670
1670
  category: string;
1671
1671
  publisher: {
1672
1672
  id: string;
@@ -1680,9 +1680,9 @@ export declare const auxiliaryContentSchemas: {
1680
1680
  fulfillment: {
1681
1681
  source: {
1682
1682
  kind: "git";
1683
+ ref: string;
1683
1684
  repoUrl: string;
1684
1685
  directory: string;
1685
- ref: string;
1686
1686
  integrity?: string | undefined;
1687
1687
  } | {
1688
1688
  kind: "r2";