busa-sdk 0.11.0 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +862 -841
- package/dist/index.js +32 -12
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9291,11 +9291,17 @@ declare const cloudContract: {
|
|
|
9291
9291
|
currentValue: z.ZodUnknown;
|
|
9292
9292
|
}, z.core.$strip>>;
|
|
9293
9293
|
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
9294
|
-
|
|
9294
|
+
lifecycleChangeRequest: _orpc_contract.ContractProcedure<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9295
9295
|
message: z.ZodOptional<z.ZodString>;
|
|
9296
9296
|
submittedBy: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9297
9297
|
baseId: z.ZodString;
|
|
9298
|
+
operation: z.ZodLiteral<"archive">;
|
|
9298
9299
|
}, z.core.$strip>, z.ZodObject<{
|
|
9300
|
+
message: z.ZodOptional<z.ZodString>;
|
|
9301
|
+
submittedBy: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9302
|
+
baseId: z.ZodString;
|
|
9303
|
+
operation: z.ZodLiteral<"restore">;
|
|
9304
|
+
}, z.core.$strip>], "operation">, z.ZodObject<{
|
|
9299
9305
|
id: z.ZodString;
|
|
9300
9306
|
baseId: z.ZodNullable<z.ZodString>;
|
|
9301
9307
|
targetType: z.ZodEnum<{
|
|
@@ -9696,10 +9702,59 @@ declare const cloudContract: {
|
|
|
9696
9702
|
createdAt: z.ZodString;
|
|
9697
9703
|
}, z.core.$strip>>;
|
|
9698
9704
|
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
9699
|
-
|
|
9700
|
-
|
|
9701
|
-
|
|
9702
|
-
|
|
9705
|
+
};
|
|
9706
|
+
fileTrees: {
|
|
9707
|
+
create: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
9708
|
+
parentNodeId: z.ZodOptional<z.ZodString>;
|
|
9709
|
+
slug: z.ZodString;
|
|
9710
|
+
name: z.ZodString;
|
|
9711
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9712
|
+
visibility: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
9713
|
+
private: "private";
|
|
9714
|
+
workspace: "workspace";
|
|
9715
|
+
public: "public";
|
|
9716
|
+
}>>>;
|
|
9717
|
+
version: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9718
|
+
files: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
9719
|
+
path: z.ZodString;
|
|
9720
|
+
assetId: z.ZodString;
|
|
9721
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9722
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
9723
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9724
|
+
path: z.ZodString;
|
|
9725
|
+
content: z.ZodDefault<z.ZodString>;
|
|
9726
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
9727
|
+
}, z.core.$strict>]>>>>;
|
|
9728
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
9729
|
+
mergeMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
9730
|
+
replace: "replace";
|
|
9731
|
+
merge: "merge";
|
|
9732
|
+
}>>>;
|
|
9733
|
+
type: z.ZodEnum<{
|
|
9734
|
+
skill: "skill";
|
|
9735
|
+
drive: "drive";
|
|
9736
|
+
airapp: "airapp";
|
|
9737
|
+
}>;
|
|
9738
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
9739
|
+
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
9740
|
+
entryFile: z.ZodString;
|
|
9741
|
+
visibility: z.ZodEnum<{
|
|
9742
|
+
private: "private";
|
|
9743
|
+
workspace: "workspace";
|
|
9744
|
+
public: "public";
|
|
9745
|
+
}>;
|
|
9746
|
+
version: z.ZodString;
|
|
9747
|
+
files: z.ZodArray<z.ZodObject<{
|
|
9748
|
+
path: z.ZodString;
|
|
9749
|
+
name: z.ZodString;
|
|
9750
|
+
size: z.ZodNumber;
|
|
9751
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
9752
|
+
mimeType: z.ZodNullable<z.ZodString>;
|
|
9753
|
+
assetId: z.ZodString;
|
|
9754
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
9755
|
+
}, z.core.$strip>>;
|
|
9756
|
+
skippedGitignorePaths: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
9757
|
+
materialized: z.ZodLiteral<true>;
|
|
9703
9758
|
}, z.core.$strip>, z.ZodObject<{
|
|
9704
9759
|
id: z.ZodString;
|
|
9705
9760
|
baseId: z.ZodNullable<z.ZodString>;
|
|
@@ -10100,60 +10155,90 @@ declare const cloudContract: {
|
|
|
10100
10155
|
visibleOperationHeads: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10101
10156
|
createdAt: z.ZodString;
|
|
10102
10157
|
}, z.core.$strip>>;
|
|
10103
|
-
|
|
10104
|
-
|
|
10105
|
-
|
|
10106
|
-
|
|
10107
|
-
|
|
10108
|
-
|
|
10158
|
+
materialized: z.ZodLiteral<false>;
|
|
10159
|
+
}, z.core.$strip>]>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
10160
|
+
listFiles: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
10161
|
+
nodeId: z.ZodString;
|
|
10162
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
10163
|
+
skill: "skill";
|
|
10164
|
+
drive: "drive";
|
|
10165
|
+
airapp: "airapp";
|
|
10166
|
+
}>>;
|
|
10167
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
10168
|
+
path: z.ZodString;
|
|
10109
10169
|
name: z.ZodString;
|
|
10110
|
-
|
|
10111
|
-
|
|
10112
|
-
|
|
10113
|
-
|
|
10114
|
-
|
|
10115
|
-
|
|
10116
|
-
|
|
10117
|
-
|
|
10170
|
+
size: z.ZodNumber;
|
|
10171
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10172
|
+
mimeType: z.ZodNullable<z.ZodString>;
|
|
10173
|
+
assetId: z.ZodString;
|
|
10174
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
10175
|
+
}, z.core.$strip>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
10176
|
+
readFile: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
10177
|
+
nodeId: z.ZodString;
|
|
10178
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
10179
|
+
skill: "skill";
|
|
10180
|
+
drive: "drive";
|
|
10181
|
+
airapp: "airapp";
|
|
10182
|
+
}>>;
|
|
10183
|
+
filePath: z.ZodString;
|
|
10184
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10185
|
+
nodeId: z.ZodString;
|
|
10186
|
+
path: z.ZodString;
|
|
10187
|
+
encoding: z.ZodEnum<{
|
|
10188
|
+
url: "url";
|
|
10189
|
+
utf8: "utf8";
|
|
10190
|
+
}>;
|
|
10191
|
+
content: z.ZodString;
|
|
10192
|
+
mimeType: z.ZodString;
|
|
10193
|
+
assetId: z.ZodString;
|
|
10194
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
10195
|
+
assetUrl: z.ZodNullable<z.ZodString>;
|
|
10196
|
+
contentHash: z.ZodString;
|
|
10197
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
10198
|
+
createChangeRequest: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
10199
|
+
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10200
|
+
submittedBy: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10201
|
+
operations: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
10202
|
+
kind: z.ZodEnum<{
|
|
10203
|
+
create: "create";
|
|
10204
|
+
update: "update";
|
|
10205
|
+
}>;
|
|
10118
10206
|
path: z.ZodString;
|
|
10119
10207
|
assetId: z.ZodString;
|
|
10120
10208
|
displayName: z.ZodOptional<z.ZodString>;
|
|
10121
10209
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
10210
|
+
baseContentHash: z.ZodOptional<z.ZodString>;
|
|
10122
10211
|
}, z.core.$strict>, z.ZodObject<{
|
|
10212
|
+
kind: z.ZodEnum<{
|
|
10213
|
+
create: "create";
|
|
10214
|
+
update: "update";
|
|
10215
|
+
}>;
|
|
10123
10216
|
path: z.ZodString;
|
|
10124
|
-
content: z.
|
|
10217
|
+
content: z.ZodString;
|
|
10125
10218
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
10126
|
-
|
|
10127
|
-
|
|
10128
|
-
|
|
10129
|
-
|
|
10130
|
-
|
|
10131
|
-
}
|
|
10132
|
-
|
|
10219
|
+
baseContentHash: z.ZodOptional<z.ZodString>;
|
|
10220
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10221
|
+
kind: z.ZodLiteral<"delete">;
|
|
10222
|
+
path: z.ZodString;
|
|
10223
|
+
baseContentHash: z.ZodOptional<z.ZodString>;
|
|
10224
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10225
|
+
kind: z.ZodLiteral<"metadata_update">;
|
|
10226
|
+
metadata: z.ZodDefault<z.ZodObject<{
|
|
10227
|
+
entryFile: z.ZodOptional<z.ZodString>;
|
|
10228
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
10229
|
+
private: "private";
|
|
10230
|
+
workspace: "workspace";
|
|
10231
|
+
public: "public";
|
|
10232
|
+
}>>;
|
|
10233
|
+
version: z.ZodOptional<z.ZodString>;
|
|
10234
|
+
}, z.core.$strip>>;
|
|
10235
|
+
}, z.core.$strict>]>>;
|
|
10236
|
+
nodeId: z.ZodString;
|
|
10237
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
10133
10238
|
skill: "skill";
|
|
10134
10239
|
drive: "drive";
|
|
10135
10240
|
airapp: "airapp";
|
|
10136
|
-
}
|
|
10137
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
10138
|
-
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
10139
|
-
entryFile: z.ZodString;
|
|
10140
|
-
visibility: z.ZodEnum<{
|
|
10141
|
-
private: "private";
|
|
10142
|
-
workspace: "workspace";
|
|
10143
|
-
public: "public";
|
|
10144
|
-
}>;
|
|
10145
|
-
version: z.ZodString;
|
|
10146
|
-
files: z.ZodArray<z.ZodObject<{
|
|
10147
|
-
path: z.ZodString;
|
|
10148
|
-
name: z.ZodString;
|
|
10149
|
-
size: z.ZodNumber;
|
|
10150
|
-
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10151
|
-
mimeType: z.ZodNullable<z.ZodString>;
|
|
10152
|
-
assetId: z.ZodString;
|
|
10153
|
-
displayName: z.ZodNullable<z.ZodString>;
|
|
10154
|
-
}, z.core.$strip>>;
|
|
10155
|
-
skippedGitignorePaths: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
10156
|
-
materialized: z.ZodLiteral<true>;
|
|
10241
|
+
}>>;
|
|
10157
10242
|
}, z.core.$strip>, z.ZodObject<{
|
|
10158
10243
|
id: z.ZodString;
|
|
10159
10244
|
baseId: z.ZodNullable<z.ZodString>;
|
|
@@ -10554,90 +10639,80 @@ declare const cloudContract: {
|
|
|
10554
10639
|
visibleOperationHeads: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10555
10640
|
createdAt: z.ZodString;
|
|
10556
10641
|
}, z.core.$strip>>;
|
|
10557
|
-
|
|
10558
|
-
|
|
10559
|
-
|
|
10642
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
10643
|
+
};
|
|
10644
|
+
airapps: {
|
|
10645
|
+
runLocalNode: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
10560
10646
|
nodeId: z.ZodString;
|
|
10561
|
-
|
|
10562
|
-
|
|
10563
|
-
|
|
10564
|
-
|
|
10647
|
+
files: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10648
|
+
engine: z.ZodDefault<z.ZodEnum<{
|
|
10649
|
+
"local-node": "local-node";
|
|
10650
|
+
srt: "srt";
|
|
10565
10651
|
}>>;
|
|
10566
|
-
}, z.core.$strip>,
|
|
10567
|
-
|
|
10652
|
+
}, z.core.$strip>, _orpc_contract.Schema<AsyncIteratorObject<{
|
|
10653
|
+
type: "log";
|
|
10654
|
+
line: string;
|
|
10655
|
+
} | {
|
|
10656
|
+
type: "installed";
|
|
10657
|
+
} | {
|
|
10658
|
+
type: "ready";
|
|
10659
|
+
previewUrl: string;
|
|
10660
|
+
} | {
|
|
10661
|
+
type: "exit";
|
|
10662
|
+
code: number | null;
|
|
10663
|
+
} | {
|
|
10664
|
+
type: "error";
|
|
10665
|
+
message: string;
|
|
10666
|
+
}, unknown, void>, _orpc_shared.AsyncIteratorClass<{
|
|
10667
|
+
type: "log";
|
|
10668
|
+
line: string;
|
|
10669
|
+
} | {
|
|
10670
|
+
type: "installed";
|
|
10671
|
+
} | {
|
|
10672
|
+
type: "ready";
|
|
10673
|
+
previewUrl: string;
|
|
10674
|
+
} | {
|
|
10675
|
+
type: "exit";
|
|
10676
|
+
code: number | null;
|
|
10677
|
+
} | {
|
|
10678
|
+
type: "error";
|
|
10679
|
+
message: string;
|
|
10680
|
+
}, unknown, void>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
10681
|
+
};
|
|
10682
|
+
files: {
|
|
10683
|
+
create: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
10684
|
+
parentNodeId: z.ZodOptional<z.ZodString>;
|
|
10685
|
+
slug: z.ZodString;
|
|
10568
10686
|
name: z.ZodString;
|
|
10569
|
-
|
|
10570
|
-
updatedAt: z.ZodNullable<z.ZodString>;
|
|
10571
|
-
mimeType: z.ZodNullable<z.ZodString>;
|
|
10572
|
-
assetId: z.ZodString;
|
|
10573
|
-
displayName: z.ZodNullable<z.ZodString>;
|
|
10574
|
-
}, z.core.$strip>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
10575
|
-
readFile: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
10576
|
-
nodeId: z.ZodString;
|
|
10577
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
10578
|
-
skill: "skill";
|
|
10579
|
-
drive: "drive";
|
|
10580
|
-
airapp: "airapp";
|
|
10581
|
-
}>>;
|
|
10582
|
-
filePath: z.ZodString;
|
|
10583
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
10584
|
-
nodeId: z.ZodString;
|
|
10585
|
-
path: z.ZodString;
|
|
10586
|
-
encoding: z.ZodEnum<{
|
|
10587
|
-
url: "url";
|
|
10588
|
-
utf8: "utf8";
|
|
10589
|
-
}>;
|
|
10590
|
-
content: z.ZodString;
|
|
10591
|
-
mimeType: z.ZodString;
|
|
10687
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10592
10688
|
assetId: z.ZodString;
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
|
|
10600
|
-
|
|
10601
|
-
|
|
10602
|
-
|
|
10603
|
-
update: "update";
|
|
10689
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
10690
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
10691
|
+
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
10692
|
+
asset: z.ZodObject<{
|
|
10693
|
+
id: z.ZodString;
|
|
10694
|
+
attachmentId: z.ZodString;
|
|
10695
|
+
name: z.ZodString;
|
|
10696
|
+
contentKind: z.ZodEnum<{
|
|
10697
|
+
text: "text";
|
|
10698
|
+
binary: "binary";
|
|
10604
10699
|
}>;
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10608
|
-
|
|
10609
|
-
|
|
10610
|
-
|
|
10611
|
-
|
|
10612
|
-
|
|
10613
|
-
|
|
10700
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10701
|
+
fileName: z.ZodString;
|
|
10702
|
+
mimeType: z.ZodString;
|
|
10703
|
+
size: z.ZodNumber;
|
|
10704
|
+
url: z.ZodString;
|
|
10705
|
+
contentHash: z.ZodNullable<z.ZodString>;
|
|
10706
|
+
usageCount: z.ZodNumber;
|
|
10707
|
+
textStatus: z.ZodEnum<{
|
|
10708
|
+
missing: "missing";
|
|
10709
|
+
stale: "stale";
|
|
10710
|
+
present: "present";
|
|
10711
|
+
none: "none";
|
|
10614
10712
|
}>;
|
|
10615
|
-
|
|
10616
|
-
|
|
10617
|
-
|
|
10618
|
-
baseContentHash: z.ZodOptional<z.ZodString>;
|
|
10619
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10620
|
-
kind: z.ZodLiteral<"delete">;
|
|
10621
|
-
path: z.ZodString;
|
|
10622
|
-
baseContentHash: z.ZodOptional<z.ZodString>;
|
|
10623
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
10624
|
-
kind: z.ZodLiteral<"metadata_update">;
|
|
10625
|
-
metadata: z.ZodDefault<z.ZodObject<{
|
|
10626
|
-
entryFile: z.ZodOptional<z.ZodString>;
|
|
10627
|
-
visibility: z.ZodOptional<z.ZodEnum<{
|
|
10628
|
-
private: "private";
|
|
10629
|
-
workspace: "workspace";
|
|
10630
|
-
public: "public";
|
|
10631
|
-
}>>;
|
|
10632
|
-
version: z.ZodOptional<z.ZodString>;
|
|
10633
|
-
}, z.core.$strip>>;
|
|
10634
|
-
}, z.core.$strict>]>>;
|
|
10635
|
-
nodeId: z.ZodString;
|
|
10636
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
10637
|
-
skill: "skill";
|
|
10638
|
-
drive: "drive";
|
|
10639
|
-
airapp: "airapp";
|
|
10640
|
-
}>>;
|
|
10713
|
+
createdAt: z.ZodString;
|
|
10714
|
+
}, z.core.$strip>;
|
|
10715
|
+
materialized: z.ZodLiteral<true>;
|
|
10641
10716
|
}, z.core.$strip>, z.ZodObject<{
|
|
10642
10717
|
id: z.ZodString;
|
|
10643
10718
|
baseId: z.ZodNullable<z.ZodString>;
|
|
@@ -11038,79 +11113,21 @@ declare const cloudContract: {
|
|
|
11038
11113
|
visibleOperationHeads: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11039
11114
|
createdAt: z.ZodString;
|
|
11040
11115
|
}, z.core.$strip>>;
|
|
11041
|
-
|
|
11042
|
-
|
|
11043
|
-
airapps: {
|
|
11044
|
-
runLocalNode: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11045
|
-
nodeId: z.ZodString;
|
|
11046
|
-
files: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11047
|
-
engine: z.ZodDefault<z.ZodEnum<{
|
|
11048
|
-
"local-node": "local-node";
|
|
11049
|
-
srt: "srt";
|
|
11050
|
-
}>>;
|
|
11051
|
-
}, z.core.$strip>, _orpc_contract.Schema<AsyncIteratorObject<{
|
|
11052
|
-
type: "log";
|
|
11053
|
-
line: string;
|
|
11054
|
-
} | {
|
|
11055
|
-
type: "installed";
|
|
11056
|
-
} | {
|
|
11057
|
-
type: "ready";
|
|
11058
|
-
previewUrl: string;
|
|
11059
|
-
} | {
|
|
11060
|
-
type: "exit";
|
|
11061
|
-
code: number | null;
|
|
11062
|
-
} | {
|
|
11063
|
-
type: "error";
|
|
11064
|
-
message: string;
|
|
11065
|
-
}, unknown, void>, _orpc_shared.AsyncIteratorClass<{
|
|
11066
|
-
type: "log";
|
|
11067
|
-
line: string;
|
|
11068
|
-
} | {
|
|
11069
|
-
type: "installed";
|
|
11070
|
-
} | {
|
|
11071
|
-
type: "ready";
|
|
11072
|
-
previewUrl: string;
|
|
11073
|
-
} | {
|
|
11074
|
-
type: "exit";
|
|
11075
|
-
code: number | null;
|
|
11076
|
-
} | {
|
|
11077
|
-
type: "error";
|
|
11078
|
-
message: string;
|
|
11079
|
-
}, unknown, void>>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11116
|
+
materialized: z.ZodLiteral<false>;
|
|
11117
|
+
}, z.core.$strip>]>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11080
11118
|
};
|
|
11081
|
-
|
|
11119
|
+
docs: {
|
|
11082
11120
|
create: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11083
11121
|
parentNodeId: z.ZodOptional<z.ZodString>;
|
|
11084
11122
|
slug: z.ZodString;
|
|
11085
11123
|
name: z.ZodString;
|
|
11086
11124
|
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11087
|
-
|
|
11125
|
+
body: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11088
11126
|
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
11089
11127
|
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
11090
11128
|
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
11091
|
-
|
|
11092
|
-
|
|
11093
|
-
attachmentId: z.ZodString;
|
|
11094
|
-
name: z.ZodString;
|
|
11095
|
-
contentKind: z.ZodEnum<{
|
|
11096
|
-
text: "text";
|
|
11097
|
-
binary: "binary";
|
|
11098
|
-
}>;
|
|
11099
|
-
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11100
|
-
fileName: z.ZodString;
|
|
11101
|
-
mimeType: z.ZodString;
|
|
11102
|
-
size: z.ZodNumber;
|
|
11103
|
-
url: z.ZodString;
|
|
11104
|
-
contentHash: z.ZodNullable<z.ZodString>;
|
|
11105
|
-
usageCount: z.ZodNumber;
|
|
11106
|
-
textStatus: z.ZodEnum<{
|
|
11107
|
-
missing: "missing";
|
|
11108
|
-
stale: "stale";
|
|
11109
|
-
present: "present";
|
|
11110
|
-
none: "none";
|
|
11111
|
-
}>;
|
|
11112
|
-
createdAt: z.ZodString;
|
|
11113
|
-
}, z.core.$strip>;
|
|
11129
|
+
storagePrefix: z.ZodString;
|
|
11130
|
+
body: z.ZodString;
|
|
11114
11131
|
materialized: z.ZodLiteral<true>;
|
|
11115
11132
|
}, z.core.$strip>, z.ZodObject<{
|
|
11116
11133
|
id: z.ZodString;
|
|
@@ -11514,20 +11531,30 @@ declare const cloudContract: {
|
|
|
11514
11531
|
}, z.core.$strip>>;
|
|
11515
11532
|
materialized: z.ZodLiteral<false>;
|
|
11516
11533
|
}, z.core.$strip>]>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11517
|
-
|
|
11518
|
-
|
|
11519
|
-
|
|
11520
|
-
|
|
11521
|
-
|
|
11522
|
-
|
|
11523
|
-
|
|
11524
|
-
|
|
11525
|
-
|
|
11526
|
-
|
|
11534
|
+
readLines: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11535
|
+
nodeId: z.ZodString;
|
|
11536
|
+
startLine: z.ZodCoercedNumber<unknown>;
|
|
11537
|
+
endLine: z.ZodCoercedNumber<unknown>;
|
|
11538
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11539
|
+
lines: z.ZodArray<z.ZodString>;
|
|
11540
|
+
startLine: z.ZodNumber;
|
|
11541
|
+
endLine: z.ZodNumber;
|
|
11542
|
+
totalLines: z.ZodNumber;
|
|
11543
|
+
truncated: z.ZodBoolean;
|
|
11544
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11545
|
+
updateBody: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11546
|
+
body: z.ZodString;
|
|
11547
|
+
nodeId: z.ZodString;
|
|
11548
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11527
11549
|
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
11528
11550
|
storagePrefix: z.ZodString;
|
|
11529
11551
|
body: z.ZodString;
|
|
11530
|
-
|
|
11552
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11553
|
+
createChangeRequest: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11554
|
+
body: z.ZodString;
|
|
11555
|
+
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11556
|
+
submittedBy: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11557
|
+
nodeId: z.ZodString;
|
|
11531
11558
|
}, z.core.$strip>, z.ZodObject<{
|
|
11532
11559
|
id: z.ZodString;
|
|
11533
11560
|
baseId: z.ZodNullable<z.ZodString>;
|
|
@@ -11928,515 +11955,89 @@ declare const cloudContract: {
|
|
|
11928
11955
|
visibleOperationHeads: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11929
11956
|
createdAt: z.ZodString;
|
|
11930
11957
|
}, z.core.$strip>>;
|
|
11931
|
-
materialized: z.ZodLiteral<false>;
|
|
11932
|
-
}, z.core.$strip>]>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11933
|
-
readLines: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11934
|
-
nodeId: z.ZodString;
|
|
11935
|
-
startLine: z.ZodCoercedNumber<unknown>;
|
|
11936
|
-
endLine: z.ZodCoercedNumber<unknown>;
|
|
11937
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
11938
|
-
lines: z.ZodArray<z.ZodString>;
|
|
11939
|
-
startLine: z.ZodNumber;
|
|
11940
|
-
endLine: z.ZodNumber;
|
|
11941
|
-
totalLines: z.ZodNumber;
|
|
11942
|
-
truncated: z.ZodBoolean;
|
|
11943
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11944
|
-
updateBody: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11945
|
-
body: z.ZodString;
|
|
11946
|
-
nodeId: z.ZodString;
|
|
11947
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
11948
|
-
node: z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>;
|
|
11949
|
-
storagePrefix: z.ZodString;
|
|
11950
|
-
body: z.ZodString;
|
|
11951
11958
|
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
11952
|
-
|
|
11953
|
-
|
|
11954
|
-
|
|
11955
|
-
submittedBy: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11959
|
+
};
|
|
11960
|
+
forms: {
|
|
11961
|
+
getByNode: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
11956
11962
|
nodeId: z.ZodString;
|
|
11957
11963
|
}, z.core.$strip>, z.ZodObject<{
|
|
11958
11964
|
id: z.ZodString;
|
|
11959
|
-
|
|
11960
|
-
|
|
11961
|
-
|
|
11962
|
-
|
|
11963
|
-
|
|
11964
|
-
|
|
11965
|
+
nodeId: z.ZodString;
|
|
11966
|
+
spaceId: z.ZodString;
|
|
11967
|
+
targetBaseId: z.ZodString;
|
|
11968
|
+
name: z.ZodString;
|
|
11969
|
+
description: z.ZodString;
|
|
11970
|
+
bindings: z.ZodArray<z.ZodObject<{
|
|
11971
|
+
inputName: z.ZodString;
|
|
11972
|
+
fieldSlug: z.ZodString;
|
|
11973
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
11974
|
+
label: z.ZodOptional<z.ZodString>;
|
|
11975
|
+
help: z.ZodOptional<z.ZodString>;
|
|
11976
|
+
}, z.core.$strip>>;
|
|
11977
|
+
page: z.ZodObject<{
|
|
11978
|
+
code: z.ZodOptional<z.ZodString>;
|
|
11979
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
11980
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
11981
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
11982
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
11983
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
11984
|
+
}, z.core.$strip>>;
|
|
11985
|
+
}, z.core.$strip>;
|
|
11986
|
+
share: z.ZodObject<{
|
|
11987
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
11988
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
11989
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
11990
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
11991
|
+
}, z.core.$strip>;
|
|
11992
|
+
submissionCount: z.ZodDefault<z.ZodNumber>;
|
|
11965
11993
|
status: z.ZodEnum<{
|
|
11966
|
-
|
|
11967
|
-
|
|
11968
|
-
approved: "approved";
|
|
11969
|
-
rejected: "rejected";
|
|
11970
|
-
merged: "merged";
|
|
11971
|
-
abandoned: "abandoned";
|
|
11972
|
-
conflict: "conflict";
|
|
11994
|
+
active: "active";
|
|
11995
|
+
archived: "archived";
|
|
11973
11996
|
}>;
|
|
11974
|
-
|
|
11975
|
-
submittedByUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11976
|
-
id: z.ZodString;
|
|
11977
|
-
name: z.ZodNullable<z.ZodString>;
|
|
11978
|
-
email: z.ZodNullable<z.ZodString>;
|
|
11979
|
-
image: z.ZodNullable<z.ZodString>;
|
|
11980
|
-
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11981
|
-
}, z.core.$strip>>>>;
|
|
11982
|
-
sourceMeta: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11983
|
-
reviewPolicySnapshot: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11984
|
-
mergeSummary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11985
|
-
rejectedReason: z.ZodNullable<z.ZodString>;
|
|
11986
|
-
reviewedAt: z.ZodNullable<z.ZodString>;
|
|
11987
|
-
mergedAt: z.ZodNullable<z.ZodString>;
|
|
11997
|
+
createdBy: z.ZodString;
|
|
11988
11998
|
createdAt: z.ZodString;
|
|
11989
11999
|
updatedAt: z.ZodString;
|
|
11990
|
-
|
|
11991
|
-
|
|
11992
|
-
|
|
11993
|
-
|
|
11994
|
-
|
|
11995
|
-
|
|
11996
|
-
|
|
11997
|
-
|
|
11998
|
-
|
|
11999
|
-
|
|
12000
|
-
|
|
12001
|
-
|
|
12002
|
-
|
|
12003
|
-
|
|
12004
|
-
|
|
12005
|
-
|
|
12006
|
-
|
|
12007
|
-
|
|
12008
|
-
|
|
12009
|
-
|
|
12010
|
-
ko: "ko";
|
|
12011
|
-
de: "de";
|
|
12012
|
-
fr: "fr";
|
|
12013
|
-
es: "es";
|
|
12014
|
-
pt: "pt";
|
|
12015
|
-
}> & z.core.$partial, z.ZodString>]>;
|
|
12016
|
-
type: z.ZodEnum<{
|
|
12017
|
-
number: "number";
|
|
12018
|
-
email: "email";
|
|
12019
|
-
date: "date";
|
|
12020
|
-
text: "text";
|
|
12021
|
-
whiteboard: "whiteboard";
|
|
12022
|
-
html: "html";
|
|
12023
|
-
longtext: "longtext";
|
|
12024
|
-
markdown: "markdown";
|
|
12025
|
-
attachment: "attachment";
|
|
12026
|
-
relation: "relation";
|
|
12027
|
-
checkbox: "checkbox";
|
|
12028
|
-
select: "select";
|
|
12029
|
-
multiselect: "multiselect";
|
|
12030
|
-
url: "url";
|
|
12031
|
-
embed: "embed";
|
|
12032
|
-
phone: "phone";
|
|
12033
|
-
created_time: "created_time";
|
|
12034
|
-
updated_time: "updated_time";
|
|
12035
|
-
created_by: "created_by";
|
|
12036
|
-
updated_by: "updated_by";
|
|
12037
|
-
auto_number: "auto_number";
|
|
12038
|
-
ai_summary: "ai_summary";
|
|
12039
|
-
ai_tags: "ai_tags";
|
|
12040
|
-
code: "code";
|
|
12041
|
-
json: "json";
|
|
12042
|
-
yaml: "yaml";
|
|
12043
|
-
formula: "formula";
|
|
12044
|
-
lookup: "lookup";
|
|
12045
|
-
}>;
|
|
12046
|
-
required: z.ZodBoolean;
|
|
12047
|
-
position: z.ZodNumber;
|
|
12048
|
-
options: z.ZodDefault<z.ZodObject<{
|
|
12049
|
-
ai: z.ZodOptional<z.ZodObject<{
|
|
12050
|
-
model: z.ZodOptional<z.ZodString>;
|
|
12051
|
-
prompt: z.ZodOptional<z.ZodString>;
|
|
12052
|
-
reviewRequired: z.ZodOptional<z.ZodBoolean>;
|
|
12053
|
-
sourceFieldIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12054
|
-
}, z.core.$strip>>;
|
|
12055
|
-
attachment: z.ZodOptional<z.ZodObject<{
|
|
12056
|
-
maxFiles: z.ZodOptional<z.ZodNumber>;
|
|
12057
|
-
allowedMimeTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12058
|
-
maxFileSize: z.ZodOptional<z.ZodNumber>;
|
|
12059
|
-
}, z.core.$strip>>;
|
|
12060
|
-
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12061
|
-
color: z.ZodOptional<z.ZodString>;
|
|
12062
|
-
id: z.ZodString;
|
|
12063
|
-
name: z.ZodString;
|
|
12064
|
-
}, z.core.$strip>>>;
|
|
12065
|
-
code: z.ZodOptional<z.ZodObject<{
|
|
12066
|
-
language: z.ZodOptional<z.ZodString>;
|
|
12067
|
-
}, z.core.$strip>>;
|
|
12068
|
-
embed: z.ZodOptional<z.ZodObject<{
|
|
12069
|
-
aspectRatio: z.ZodOptional<z.ZodEnum<{
|
|
12070
|
-
"16:9": "16:9";
|
|
12071
|
-
"4:3": "4:3";
|
|
12072
|
-
"1:1": "1:1";
|
|
12073
|
-
}>>;
|
|
12074
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
12075
|
-
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12076
|
-
}, z.core.$strip>>;
|
|
12077
|
-
formula: z.ZodOptional<z.ZodObject<{
|
|
12078
|
-
expression: z.ZodString;
|
|
12079
|
-
}, z.core.$strip>>;
|
|
12080
|
-
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
12081
|
-
lookup: z.ZodOptional<z.ZodObject<{
|
|
12082
|
-
relationFieldSlug: z.ZodString;
|
|
12083
|
-
targetFieldSlug: z.ZodString;
|
|
12084
|
-
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
12085
|
-
values: "values";
|
|
12086
|
-
count: "count";
|
|
12087
|
-
sum: "sum";
|
|
12088
|
-
average: "average";
|
|
12089
|
-
min: "min";
|
|
12090
|
-
max: "max";
|
|
12091
|
-
concatenate: "concatenate";
|
|
12092
|
-
}>>>;
|
|
12093
|
-
limit: z.ZodOptional<z.ZodEnum<{
|
|
12094
|
-
all: "all";
|
|
12095
|
-
first: "first";
|
|
12096
|
-
}>>;
|
|
12097
|
-
}, z.core.$strip>>;
|
|
12098
|
-
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
12099
|
-
number: z.ZodOptional<z.ZodObject<{
|
|
12100
|
-
format: z.ZodOptional<z.ZodEnum<{
|
|
12101
|
-
plain: "plain";
|
|
12102
|
-
currency: "currency";
|
|
12103
|
-
}>>;
|
|
12104
|
-
currency: z.ZodOptional<z.ZodString>;
|
|
12105
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
12106
|
-
}, z.core.$strip>>;
|
|
12107
|
-
targetBaseId: z.ZodOptional<z.ZodString>;
|
|
12108
|
-
targetBaseSlug: z.ZodOptional<z.ZodString>;
|
|
12109
|
-
}, z.core.$strip>>;
|
|
12000
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
12001
|
+
create: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
12002
|
+
nodeId: z.ZodString;
|
|
12003
|
+
targetBaseId: z.ZodString;
|
|
12004
|
+
name: z.ZodString;
|
|
12005
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12006
|
+
bindings: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12007
|
+
inputName: z.ZodString;
|
|
12008
|
+
fieldSlug: z.ZodString;
|
|
12009
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
12010
|
+
label: z.ZodOptional<z.ZodString>;
|
|
12011
|
+
help: z.ZodOptional<z.ZodString>;
|
|
12012
|
+
}, z.core.$strip>>>>;
|
|
12013
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
12014
|
+
code: z.ZodOptional<z.ZodString>;
|
|
12015
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
12016
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
12017
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
12018
|
+
brandColor: z.ZodOptional<z.ZodString>;
|
|
12019
|
+
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
12110
12020
|
}, z.core.$strip>>;
|
|
12111
|
-
}, z.core.$strip
|
|
12112
|
-
|
|
12113
|
-
|
|
12114
|
-
|
|
12115
|
-
|
|
12116
|
-
|
|
12117
|
-
|
|
12118
|
-
|
|
12119
|
-
|
|
12120
|
-
|
|
12121
|
-
|
|
12122
|
-
|
|
12123
|
-
|
|
12124
|
-
|
|
12125
|
-
|
|
12126
|
-
|
|
12127
|
-
|
|
12128
|
-
|
|
12129
|
-
|
|
12130
|
-
|
|
12131
|
-
view_create: "view_create";
|
|
12132
|
-
view_update: "view_update";
|
|
12133
|
-
view_delete: "view_delete";
|
|
12134
|
-
view_restore: "view_restore";
|
|
12135
|
-
base_add_field: "base_add_field";
|
|
12136
|
-
base_delete_field: "base_delete_field";
|
|
12137
|
-
base_update_field: "base_update_field";
|
|
12138
|
-
base_convert_field: "base_convert_field";
|
|
12139
|
-
base_reorder_fields: "base_reorder_fields";
|
|
12140
|
-
base_restore_field: "base_restore_field";
|
|
12141
|
-
base_archive: "base_archive";
|
|
12142
|
-
base_restore: "base_restore";
|
|
12143
|
-
record_restore: "record_restore";
|
|
12144
|
-
doc_update: "doc_update";
|
|
12145
|
-
node_create: "node_create";
|
|
12146
|
-
node_rename: "node_rename";
|
|
12147
|
-
node_delete: "node_delete";
|
|
12148
|
-
node_restore: "node_restore";
|
|
12149
|
-
node_move: "node_move";
|
|
12150
|
-
}>;
|
|
12151
|
-
status: z.ZodEnum<{
|
|
12152
|
-
archived: "archived";
|
|
12153
|
-
merged: "merged";
|
|
12154
|
-
pending: "pending";
|
|
12155
|
-
failed: "failed";
|
|
12156
|
-
}>;
|
|
12157
|
-
targetRecordId: z.ZodNullable<z.ZodString>;
|
|
12158
|
-
targetViewId: z.ZodNullable<z.ZodString>;
|
|
12159
|
-
filePath: z.ZodNullable<z.ZodString>;
|
|
12160
|
-
sourceRecordId: z.ZodNullable<z.ZodString>;
|
|
12161
|
-
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
12162
|
-
baseCommitId: z.ZodNullable<z.ZodString>;
|
|
12163
|
-
headCommitId: z.ZodString;
|
|
12164
|
-
deleteMode: z.ZodEnum<{
|
|
12165
|
-
archive: "archive";
|
|
12166
|
-
}>;
|
|
12167
|
-
mergedRecordId: z.ZodNullable<z.ZodString>;
|
|
12168
|
-
mergedViewId: z.ZodNullable<z.ZodString>;
|
|
12169
|
-
position: z.ZodNumber;
|
|
12170
|
-
createdAt: z.ZodString;
|
|
12171
|
-
updatedAt: z.ZodString;
|
|
12172
|
-
headCommit: z.ZodObject<{
|
|
12173
|
-
id: z.ZodString;
|
|
12174
|
-
baseId: z.ZodNullable<z.ZodString>;
|
|
12175
|
-
targetType: z.ZodEnum<{
|
|
12176
|
-
base: "base";
|
|
12177
|
-
node: "node";
|
|
12178
|
-
}>;
|
|
12179
|
-
nodeId: z.ZodNullable<z.ZodString>;
|
|
12180
|
-
operationId: z.ZodNullable<z.ZodString>;
|
|
12181
|
-
parentCommitId: z.ZodNullable<z.ZodString>;
|
|
12182
|
-
fields: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12183
|
-
operation: z.ZodEnum<{
|
|
12184
|
-
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
12185
|
-
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
12186
|
-
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
12187
|
-
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
12188
|
-
record_create: "record_create";
|
|
12189
|
-
record_update: "record_update";
|
|
12190
|
-
record_delete: "record_delete";
|
|
12191
|
-
record_variant: "record_variant";
|
|
12192
|
-
view_create: "view_create";
|
|
12193
|
-
view_update: "view_update";
|
|
12194
|
-
view_delete: "view_delete";
|
|
12195
|
-
view_restore: "view_restore";
|
|
12196
|
-
base_add_field: "base_add_field";
|
|
12197
|
-
base_delete_field: "base_delete_field";
|
|
12198
|
-
base_update_field: "base_update_field";
|
|
12199
|
-
base_convert_field: "base_convert_field";
|
|
12200
|
-
base_reorder_fields: "base_reorder_fields";
|
|
12201
|
-
base_restore_field: "base_restore_field";
|
|
12202
|
-
base_archive: "base_archive";
|
|
12203
|
-
base_restore: "base_restore";
|
|
12204
|
-
record_restore: "record_restore";
|
|
12205
|
-
doc_update: "doc_update";
|
|
12206
|
-
node_create: "node_create";
|
|
12207
|
-
node_rename: "node_rename";
|
|
12208
|
-
node_delete: "node_delete";
|
|
12209
|
-
node_restore: "node_restore";
|
|
12210
|
-
node_move: "node_move";
|
|
12211
|
-
}>;
|
|
12212
|
-
message: z.ZodString;
|
|
12213
|
-
author: z.ZodString;
|
|
12214
|
-
authorUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12215
|
-
id: z.ZodString;
|
|
12216
|
-
name: z.ZodNullable<z.ZodString>;
|
|
12217
|
-
email: z.ZodNullable<z.ZodString>;
|
|
12218
|
-
image: z.ZodNullable<z.ZodString>;
|
|
12219
|
-
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12220
|
-
}, z.core.$strip>>>>;
|
|
12221
|
-
createdAt: z.ZodString;
|
|
12222
|
-
}, z.core.$strip>;
|
|
12223
|
-
baseFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12224
|
-
}, z.core.$strip>>;
|
|
12225
|
-
primaryOperation: z.ZodNullable<z.ZodObject<{
|
|
12226
|
-
id: z.ZodString;
|
|
12227
|
-
changeRequestId: z.ZodString;
|
|
12228
|
-
baseId: z.ZodNullable<z.ZodString>;
|
|
12229
|
-
targetType: z.ZodEnum<{
|
|
12230
|
-
base: "base";
|
|
12231
|
-
node: "node";
|
|
12232
|
-
}>;
|
|
12233
|
-
nodeId: z.ZodNullable<z.ZodString>;
|
|
12234
|
-
operation: z.ZodEnum<{
|
|
12235
|
-
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
12236
|
-
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
12237
|
-
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
12238
|
-
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
12239
|
-
record_create: "record_create";
|
|
12240
|
-
record_update: "record_update";
|
|
12241
|
-
record_delete: "record_delete";
|
|
12242
|
-
record_variant: "record_variant";
|
|
12243
|
-
view_create: "view_create";
|
|
12244
|
-
view_update: "view_update";
|
|
12245
|
-
view_delete: "view_delete";
|
|
12246
|
-
view_restore: "view_restore";
|
|
12247
|
-
base_add_field: "base_add_field";
|
|
12248
|
-
base_delete_field: "base_delete_field";
|
|
12249
|
-
base_update_field: "base_update_field";
|
|
12250
|
-
base_convert_field: "base_convert_field";
|
|
12251
|
-
base_reorder_fields: "base_reorder_fields";
|
|
12252
|
-
base_restore_field: "base_restore_field";
|
|
12253
|
-
base_archive: "base_archive";
|
|
12254
|
-
base_restore: "base_restore";
|
|
12255
|
-
record_restore: "record_restore";
|
|
12256
|
-
doc_update: "doc_update";
|
|
12257
|
-
node_create: "node_create";
|
|
12258
|
-
node_rename: "node_rename";
|
|
12259
|
-
node_delete: "node_delete";
|
|
12260
|
-
node_restore: "node_restore";
|
|
12261
|
-
node_move: "node_move";
|
|
12262
|
-
}>;
|
|
12263
|
-
status: z.ZodEnum<{
|
|
12264
|
-
archived: "archived";
|
|
12265
|
-
merged: "merged";
|
|
12266
|
-
pending: "pending";
|
|
12267
|
-
failed: "failed";
|
|
12268
|
-
}>;
|
|
12269
|
-
targetRecordId: z.ZodNullable<z.ZodString>;
|
|
12270
|
-
targetViewId: z.ZodNullable<z.ZodString>;
|
|
12271
|
-
filePath: z.ZodNullable<z.ZodString>;
|
|
12272
|
-
sourceRecordId: z.ZodNullable<z.ZodString>;
|
|
12273
|
-
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
12274
|
-
baseCommitId: z.ZodNullable<z.ZodString>;
|
|
12275
|
-
headCommitId: z.ZodString;
|
|
12276
|
-
deleteMode: z.ZodEnum<{
|
|
12277
|
-
archive: "archive";
|
|
12278
|
-
}>;
|
|
12279
|
-
mergedRecordId: z.ZodNullable<z.ZodString>;
|
|
12280
|
-
mergedViewId: z.ZodNullable<z.ZodString>;
|
|
12281
|
-
position: z.ZodNumber;
|
|
12282
|
-
createdAt: z.ZodString;
|
|
12283
|
-
updatedAt: z.ZodString;
|
|
12284
|
-
headCommit: z.ZodObject<{
|
|
12285
|
-
id: z.ZodString;
|
|
12286
|
-
baseId: z.ZodNullable<z.ZodString>;
|
|
12287
|
-
targetType: z.ZodEnum<{
|
|
12288
|
-
base: "base";
|
|
12289
|
-
node: "node";
|
|
12290
|
-
}>;
|
|
12291
|
-
nodeId: z.ZodNullable<z.ZodString>;
|
|
12292
|
-
operationId: z.ZodNullable<z.ZodString>;
|
|
12293
|
-
parentCommitId: z.ZodNullable<z.ZodString>;
|
|
12294
|
-
fields: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12295
|
-
operation: z.ZodEnum<{
|
|
12296
|
-
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
12297
|
-
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
12298
|
-
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
12299
|
-
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
12300
|
-
record_create: "record_create";
|
|
12301
|
-
record_update: "record_update";
|
|
12302
|
-
record_delete: "record_delete";
|
|
12303
|
-
record_variant: "record_variant";
|
|
12304
|
-
view_create: "view_create";
|
|
12305
|
-
view_update: "view_update";
|
|
12306
|
-
view_delete: "view_delete";
|
|
12307
|
-
view_restore: "view_restore";
|
|
12308
|
-
base_add_field: "base_add_field";
|
|
12309
|
-
base_delete_field: "base_delete_field";
|
|
12310
|
-
base_update_field: "base_update_field";
|
|
12311
|
-
base_convert_field: "base_convert_field";
|
|
12312
|
-
base_reorder_fields: "base_reorder_fields";
|
|
12313
|
-
base_restore_field: "base_restore_field";
|
|
12314
|
-
base_archive: "base_archive";
|
|
12315
|
-
base_restore: "base_restore";
|
|
12316
|
-
record_restore: "record_restore";
|
|
12317
|
-
doc_update: "doc_update";
|
|
12318
|
-
node_create: "node_create";
|
|
12319
|
-
node_rename: "node_rename";
|
|
12320
|
-
node_delete: "node_delete";
|
|
12321
|
-
node_restore: "node_restore";
|
|
12322
|
-
node_move: "node_move";
|
|
12323
|
-
}>;
|
|
12324
|
-
message: z.ZodString;
|
|
12325
|
-
author: z.ZodString;
|
|
12326
|
-
authorUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12327
|
-
id: z.ZodString;
|
|
12328
|
-
name: z.ZodNullable<z.ZodString>;
|
|
12329
|
-
email: z.ZodNullable<z.ZodString>;
|
|
12330
|
-
image: z.ZodNullable<z.ZodString>;
|
|
12331
|
-
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12332
|
-
}, z.core.$strip>>>>;
|
|
12333
|
-
createdAt: z.ZodString;
|
|
12334
|
-
}, z.core.$strip>;
|
|
12335
|
-
baseFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12336
|
-
}, z.core.$strip>>;
|
|
12337
|
-
operationCount: z.ZodNumber;
|
|
12338
|
-
reviews: z.ZodArray<z.ZodObject<{
|
|
12339
|
-
id: z.ZodString;
|
|
12340
|
-
changeRequestId: z.ZodString;
|
|
12341
|
-
reviewerId: z.ZodString;
|
|
12342
|
-
reviewer: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12343
|
-
id: z.ZodString;
|
|
12344
|
-
name: z.ZodNullable<z.ZodString>;
|
|
12345
|
-
email: z.ZodNullable<z.ZodString>;
|
|
12346
|
-
image: z.ZodNullable<z.ZodString>;
|
|
12347
|
-
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12348
|
-
}, z.core.$strip>>>>;
|
|
12349
|
-
verdict: z.ZodEnum<{
|
|
12350
|
-
approved: "approved";
|
|
12351
|
-
rejected: "rejected";
|
|
12352
|
-
}>;
|
|
12353
|
-
reason: z.ZodNullable<z.ZodString>;
|
|
12354
|
-
visibleOperationHeads: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12355
|
-
createdAt: z.ZodString;
|
|
12356
|
-
}, z.core.$strip>>;
|
|
12357
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
12358
|
-
};
|
|
12359
|
-
forms: {
|
|
12360
|
-
getByNode: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
12361
|
-
nodeId: z.ZodString;
|
|
12362
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
12363
|
-
id: z.ZodString;
|
|
12364
|
-
nodeId: z.ZodString;
|
|
12365
|
-
spaceId: z.ZodString;
|
|
12366
|
-
targetBaseId: z.ZodString;
|
|
12367
|
-
name: z.ZodString;
|
|
12368
|
-
description: z.ZodString;
|
|
12369
|
-
bindings: z.ZodArray<z.ZodObject<{
|
|
12370
|
-
inputName: z.ZodString;
|
|
12371
|
-
fieldSlug: z.ZodString;
|
|
12372
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
12373
|
-
label: z.ZodOptional<z.ZodString>;
|
|
12374
|
-
help: z.ZodOptional<z.ZodString>;
|
|
12375
|
-
}, z.core.$strip>>;
|
|
12376
|
-
page: z.ZodObject<{
|
|
12377
|
-
code: z.ZodOptional<z.ZodString>;
|
|
12378
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
12379
|
-
logoUrl: z.ZodOptional<z.ZodString>;
|
|
12380
|
-
coverUrl: z.ZodOptional<z.ZodString>;
|
|
12381
|
-
brandColor: z.ZodOptional<z.ZodString>;
|
|
12382
|
-
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
12383
|
-
}, z.core.$strip>>;
|
|
12384
|
-
}, z.core.$strip>;
|
|
12385
|
-
share: z.ZodObject<{
|
|
12386
|
-
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
12387
|
-
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
12388
|
-
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
12389
|
-
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
12390
|
-
}, z.core.$strip>;
|
|
12391
|
-
submissionCount: z.ZodDefault<z.ZodNumber>;
|
|
12392
|
-
status: z.ZodEnum<{
|
|
12393
|
-
active: "active";
|
|
12394
|
-
archived: "archived";
|
|
12395
|
-
}>;
|
|
12396
|
-
createdBy: z.ZodString;
|
|
12397
|
-
createdAt: z.ZodString;
|
|
12398
|
-
updatedAt: z.ZodString;
|
|
12399
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
12400
|
-
create: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
12401
|
-
nodeId: z.ZodString;
|
|
12402
|
-
targetBaseId: z.ZodString;
|
|
12403
|
-
name: z.ZodString;
|
|
12404
|
-
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12405
|
-
bindings: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12406
|
-
inputName: z.ZodString;
|
|
12407
|
-
fieldSlug: z.ZodString;
|
|
12408
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
12409
|
-
label: z.ZodOptional<z.ZodString>;
|
|
12410
|
-
help: z.ZodOptional<z.ZodString>;
|
|
12411
|
-
}, z.core.$strip>>>>;
|
|
12412
|
-
page: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
12413
|
-
code: z.ZodOptional<z.ZodString>;
|
|
12414
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
12415
|
-
logoUrl: z.ZodOptional<z.ZodString>;
|
|
12416
|
-
coverUrl: z.ZodOptional<z.ZodString>;
|
|
12417
|
-
brandColor: z.ZodOptional<z.ZodString>;
|
|
12418
|
-
hideBranding: z.ZodOptional<z.ZodBoolean>;
|
|
12419
|
-
}, z.core.$strip>>;
|
|
12420
|
-
}, z.core.$strip>>>;
|
|
12421
|
-
share: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
12422
|
-
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
12423
|
-
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
12424
|
-
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
12425
|
-
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
12426
|
-
}, z.core.$strip>>>;
|
|
12427
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
12428
|
-
id: z.ZodString;
|
|
12429
|
-
nodeId: z.ZodString;
|
|
12430
|
-
spaceId: z.ZodString;
|
|
12431
|
-
targetBaseId: z.ZodString;
|
|
12432
|
-
name: z.ZodString;
|
|
12433
|
-
description: z.ZodString;
|
|
12434
|
-
bindings: z.ZodArray<z.ZodObject<{
|
|
12435
|
-
inputName: z.ZodString;
|
|
12436
|
-
fieldSlug: z.ZodString;
|
|
12437
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
12438
|
-
label: z.ZodOptional<z.ZodString>;
|
|
12439
|
-
help: z.ZodOptional<z.ZodString>;
|
|
12021
|
+
}, z.core.$strip>>>;
|
|
12022
|
+
share: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
12023
|
+
isPublic: z.ZodDefault<z.ZodBoolean>;
|
|
12024
|
+
anonymousSubmit: z.ZodDefault<z.ZodBoolean>;
|
|
12025
|
+
submitLimit: z.ZodOptional<z.ZodNumber>;
|
|
12026
|
+
requireCaptcha: z.ZodOptional<z.ZodBoolean>;
|
|
12027
|
+
}, z.core.$strip>>>;
|
|
12028
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12029
|
+
id: z.ZodString;
|
|
12030
|
+
nodeId: z.ZodString;
|
|
12031
|
+
spaceId: z.ZodString;
|
|
12032
|
+
targetBaseId: z.ZodString;
|
|
12033
|
+
name: z.ZodString;
|
|
12034
|
+
description: z.ZodString;
|
|
12035
|
+
bindings: z.ZodArray<z.ZodObject<{
|
|
12036
|
+
inputName: z.ZodString;
|
|
12037
|
+
fieldSlug: z.ZodString;
|
|
12038
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
12039
|
+
label: z.ZodOptional<z.ZodString>;
|
|
12040
|
+
help: z.ZodOptional<z.ZodString>;
|
|
12440
12041
|
}, z.core.$strip>>;
|
|
12441
12042
|
page: z.ZodObject<{
|
|
12442
12043
|
code: z.ZodOptional<z.ZodString>;
|
|
@@ -13653,145 +13254,562 @@ declare const cloudContract: {
|
|
|
13653
13254
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13654
13255
|
nextCursor: z.ZodNullable<z.ZodString>;
|
|
13655
13256
|
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13656
|
-
exportAssetText: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13657
|
-
assetId: z.ZodString;
|
|
13658
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13659
|
-
assetId: z.ZodString;
|
|
13660
|
-
textStorageKey: z.ZodString;
|
|
13661
|
-
downloadUrl: z.ZodNullable<z.ZodString>;
|
|
13662
|
-
textContentHash: z.ZodNullable<z.ZodString>;
|
|
13663
|
-
byteCount: z.ZodNumber;
|
|
13664
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13665
|
-
importBegin: _orpc_contract.ContractProcedure<_orpc_contract.Schema<unknown, unknown>, z.ZodObject<{
|
|
13666
|
-
sessionId: z.ZodString;
|
|
13667
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13668
|
-
importTables: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13669
|
-
sessionId: z.ZodString;
|
|
13670
|
-
table: z.ZodUnion<readonly [z.ZodEnum<{
|
|
13671
|
-
records: "records";
|
|
13672
|
-
nodes: "nodes";
|
|
13673
|
-
operations: "operations";
|
|
13674
|
-
baseFields: "baseFields";
|
|
13675
|
-
reviews: "reviews";
|
|
13676
|
-
comments: "comments";
|
|
13677
|
-
bases: "bases";
|
|
13678
|
-
assets: "assets";
|
|
13679
|
-
nodePrincipals: "nodePrincipals";
|
|
13680
|
-
views: "views";
|
|
13681
|
-
fieldValues: "fieldValues";
|
|
13682
|
-
recordLinks: "recordLinks";
|
|
13683
|
-
attachments: "attachments";
|
|
13684
|
-
assetUsages: "assetUsages";
|
|
13685
|
-
assetTexts: "assetTexts";
|
|
13686
|
-
commits: "commits";
|
|
13687
|
-
changeRequests: "changeRequests";
|
|
13688
|
-
auditEvents: "auditEvents";
|
|
13689
|
-
}>, z.ZodLiteral<"docBodies">, z.ZodLiteral<"attachmentBlobs">, z.ZodLiteral<"assetTextBlobs">]>;
|
|
13690
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13691
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13692
|
-
inserted: z.ZodNumber;
|
|
13693
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13694
|
-
importCommit: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13695
|
-
sessionId: z.ZodString;
|
|
13696
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13697
|
-
ok: z.ZodBoolean;
|
|
13698
|
-
warnings: z.ZodArray<z.ZodString>;
|
|
13699
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13700
|
-
importAbort: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13701
|
-
sessionId: z.ZodString;
|
|
13702
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13703
|
-
ok: z.ZodBoolean;
|
|
13704
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13705
|
-
};
|
|
13706
|
-
install: {
|
|
13707
|
-
planFromGithub: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13708
|
-
repoUrl: z.ZodString;
|
|
13709
|
-
intoFolder: z.ZodOptional<z.ZodString>;
|
|
13710
|
-
rename: z.ZodOptional<z.ZodBoolean>;
|
|
13711
|
-
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
13712
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13713
|
-
package: z.ZodObject<{
|
|
13714
|
-
name: z.ZodString;
|
|
13715
|
-
description: z.ZodDefault<z.ZodString>;
|
|
13716
|
-
version: z.ZodOptional<z.ZodString>;
|
|
13717
|
-
author: z.ZodOptional<z.ZodString>;
|
|
13718
|
-
license: z.ZodOptional<z.ZodString>;
|
|
13719
|
-
homepage: z.ZodOptional<z.ZodString>;
|
|
13720
|
-
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
13721
|
-
}, z.core.$strip>;
|
|
13722
|
-
source: z.ZodObject<{
|
|
13723
|
-
owner: z.ZodString;
|
|
13724
|
-
repo: z.ZodString;
|
|
13725
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
13726
|
-
subdir: z.ZodOptional<z.ZodString>;
|
|
13727
|
-
}, z.core.$strip>;
|
|
13728
|
-
targetFolderSlug: z.ZodString;
|
|
13729
|
-
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
13730
|
-
path: z.ZodString;
|
|
13731
|
-
slug: z.ZodString;
|
|
13732
|
-
name: z.ZodString;
|
|
13733
|
-
type: z.ZodEnum<{
|
|
13734
|
-
file: "file";
|
|
13735
|
-
base: "base";
|
|
13736
|
-
folder: "folder";
|
|
13737
|
-
skill: "skill";
|
|
13738
|
-
drive: "drive";
|
|
13739
|
-
airapp: "airapp";
|
|
13740
|
-
doc: "doc";
|
|
13741
|
-
}>;
|
|
13742
|
-
depth: z.ZodNumber;
|
|
13743
|
-
fieldCount: z.ZodOptional<z.ZodNumber>;
|
|
13744
|
-
recordCount: z.ZodOptional<z.ZodNumber>;
|
|
13745
|
-
fileCount: z.ZodOptional<z.ZodNumber>;
|
|
13746
|
-
}, z.core.$strip>>>;
|
|
13747
|
-
counts: z.ZodObject<{
|
|
13748
|
-
folders: z.ZodNumber;
|
|
13749
|
-
docs: z.ZodNumber;
|
|
13750
|
-
bases: z.ZodNumber;
|
|
13751
|
-
records: z.ZodNumber;
|
|
13752
|
-
skills: z.ZodNumber;
|
|
13753
|
-
airapps: z.ZodNumber;
|
|
13754
|
-
drives: z.ZodNumber;
|
|
13755
|
-
files: z.ZodNumber;
|
|
13756
|
-
}, z.core.$strip>;
|
|
13757
|
-
collisions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
13758
|
-
kind: z.ZodEnum<{
|
|
13759
|
-
base: "base";
|
|
13760
|
-
node: "node";
|
|
13761
|
-
}>;
|
|
13762
|
-
slug: z.ZodString;
|
|
13763
|
-
path: z.ZodString;
|
|
13764
|
-
renamedTo: z.ZodOptional<z.ZodString>;
|
|
13765
|
-
}, z.core.$strip>>>;
|
|
13766
|
-
warnings: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
13767
|
-
requiresAutoMerge: z.ZodBoolean;
|
|
13768
|
-
applicable: z.ZodBoolean;
|
|
13769
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13770
|
-
fromGithub: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13771
|
-
repoUrl: z.ZodString;
|
|
13772
|
-
intoFolder: z.ZodOptional<z.ZodString>;
|
|
13773
|
-
rename: z.ZodOptional<z.ZodBoolean>;
|
|
13774
|
-
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
13775
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13776
|
-
targetFolderSlug: z.ZodString;
|
|
13777
|
-
targetFolderNodeId: z.ZodString;
|
|
13778
|
-
created: z.ZodObject<{
|
|
13779
|
-
folders: z.ZodNumber;
|
|
13780
|
-
docs: z.ZodNumber;
|
|
13781
|
-
bases: z.ZodNumber;
|
|
13782
|
-
views: z.ZodNumber;
|
|
13783
|
-
records: z.ZodNumber;
|
|
13784
|
-
fileTreeNodes: z.ZodNumber;
|
|
13785
|
-
files: z.ZodNumber;
|
|
13786
|
-
}, z.core.$strip>;
|
|
13787
|
-
pendingChangeRequests: z.ZodNumber;
|
|
13788
|
-
warnings: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
13789
|
-
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13790
|
-
};
|
|
13791
|
-
changeRequests: {
|
|
13792
|
-
list: _orpc_contract.ContractProcedure<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
13793
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
13794
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
13257
|
+
exportAssetText: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13258
|
+
assetId: z.ZodString;
|
|
13259
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13260
|
+
assetId: z.ZodString;
|
|
13261
|
+
textStorageKey: z.ZodString;
|
|
13262
|
+
downloadUrl: z.ZodNullable<z.ZodString>;
|
|
13263
|
+
textContentHash: z.ZodNullable<z.ZodString>;
|
|
13264
|
+
byteCount: z.ZodNumber;
|
|
13265
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13266
|
+
importBegin: _orpc_contract.ContractProcedure<_orpc_contract.Schema<unknown, unknown>, z.ZodObject<{
|
|
13267
|
+
sessionId: z.ZodString;
|
|
13268
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13269
|
+
importTables: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13270
|
+
sessionId: z.ZodString;
|
|
13271
|
+
table: z.ZodUnion<readonly [z.ZodEnum<{
|
|
13272
|
+
records: "records";
|
|
13273
|
+
nodes: "nodes";
|
|
13274
|
+
operations: "operations";
|
|
13275
|
+
baseFields: "baseFields";
|
|
13276
|
+
reviews: "reviews";
|
|
13277
|
+
comments: "comments";
|
|
13278
|
+
bases: "bases";
|
|
13279
|
+
assets: "assets";
|
|
13280
|
+
nodePrincipals: "nodePrincipals";
|
|
13281
|
+
views: "views";
|
|
13282
|
+
fieldValues: "fieldValues";
|
|
13283
|
+
recordLinks: "recordLinks";
|
|
13284
|
+
attachments: "attachments";
|
|
13285
|
+
assetUsages: "assetUsages";
|
|
13286
|
+
assetTexts: "assetTexts";
|
|
13287
|
+
commits: "commits";
|
|
13288
|
+
changeRequests: "changeRequests";
|
|
13289
|
+
auditEvents: "auditEvents";
|
|
13290
|
+
}>, z.ZodLiteral<"docBodies">, z.ZodLiteral<"attachmentBlobs">, z.ZodLiteral<"assetTextBlobs">]>;
|
|
13291
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13292
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13293
|
+
inserted: z.ZodNumber;
|
|
13294
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13295
|
+
importCommit: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13296
|
+
sessionId: z.ZodString;
|
|
13297
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13298
|
+
ok: z.ZodBoolean;
|
|
13299
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
13300
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13301
|
+
importAbort: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13302
|
+
sessionId: z.ZodString;
|
|
13303
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13304
|
+
ok: z.ZodBoolean;
|
|
13305
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13306
|
+
};
|
|
13307
|
+
install: {
|
|
13308
|
+
planFromGithub: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13309
|
+
repoUrl: z.ZodString;
|
|
13310
|
+
intoFolder: z.ZodOptional<z.ZodString>;
|
|
13311
|
+
rename: z.ZodOptional<z.ZodBoolean>;
|
|
13312
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
13313
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13314
|
+
package: z.ZodObject<{
|
|
13315
|
+
name: z.ZodString;
|
|
13316
|
+
description: z.ZodDefault<z.ZodString>;
|
|
13317
|
+
version: z.ZodOptional<z.ZodString>;
|
|
13318
|
+
author: z.ZodOptional<z.ZodString>;
|
|
13319
|
+
license: z.ZodOptional<z.ZodString>;
|
|
13320
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
13321
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
13322
|
+
}, z.core.$strip>;
|
|
13323
|
+
source: z.ZodObject<{
|
|
13324
|
+
owner: z.ZodString;
|
|
13325
|
+
repo: z.ZodString;
|
|
13326
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
13327
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
13328
|
+
}, z.core.$strip>;
|
|
13329
|
+
targetFolderSlug: z.ZodString;
|
|
13330
|
+
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
13331
|
+
path: z.ZodString;
|
|
13332
|
+
slug: z.ZodString;
|
|
13333
|
+
name: z.ZodString;
|
|
13334
|
+
type: z.ZodEnum<{
|
|
13335
|
+
file: "file";
|
|
13336
|
+
base: "base";
|
|
13337
|
+
folder: "folder";
|
|
13338
|
+
skill: "skill";
|
|
13339
|
+
drive: "drive";
|
|
13340
|
+
airapp: "airapp";
|
|
13341
|
+
doc: "doc";
|
|
13342
|
+
}>;
|
|
13343
|
+
depth: z.ZodNumber;
|
|
13344
|
+
fieldCount: z.ZodOptional<z.ZodNumber>;
|
|
13345
|
+
recordCount: z.ZodOptional<z.ZodNumber>;
|
|
13346
|
+
fileCount: z.ZodOptional<z.ZodNumber>;
|
|
13347
|
+
}, z.core.$strip>>>;
|
|
13348
|
+
counts: z.ZodObject<{
|
|
13349
|
+
folders: z.ZodNumber;
|
|
13350
|
+
docs: z.ZodNumber;
|
|
13351
|
+
bases: z.ZodNumber;
|
|
13352
|
+
records: z.ZodNumber;
|
|
13353
|
+
skills: z.ZodNumber;
|
|
13354
|
+
airapps: z.ZodNumber;
|
|
13355
|
+
drives: z.ZodNumber;
|
|
13356
|
+
files: z.ZodNumber;
|
|
13357
|
+
}, z.core.$strip>;
|
|
13358
|
+
collisions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
13359
|
+
kind: z.ZodEnum<{
|
|
13360
|
+
base: "base";
|
|
13361
|
+
node: "node";
|
|
13362
|
+
}>;
|
|
13363
|
+
slug: z.ZodString;
|
|
13364
|
+
path: z.ZodString;
|
|
13365
|
+
renamedTo: z.ZodOptional<z.ZodString>;
|
|
13366
|
+
}, z.core.$strip>>>;
|
|
13367
|
+
warnings: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
13368
|
+
requiresAutoMerge: z.ZodBoolean;
|
|
13369
|
+
applicable: z.ZodBoolean;
|
|
13370
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13371
|
+
fromGithub: _orpc_contract.ContractProcedure<z.ZodObject<{
|
|
13372
|
+
repoUrl: z.ZodString;
|
|
13373
|
+
intoFolder: z.ZodOptional<z.ZodString>;
|
|
13374
|
+
rename: z.ZodOptional<z.ZodBoolean>;
|
|
13375
|
+
autoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
13376
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13377
|
+
targetFolderSlug: z.ZodString;
|
|
13378
|
+
targetFolderNodeId: z.ZodString;
|
|
13379
|
+
created: z.ZodObject<{
|
|
13380
|
+
folders: z.ZodNumber;
|
|
13381
|
+
docs: z.ZodNumber;
|
|
13382
|
+
bases: z.ZodNumber;
|
|
13383
|
+
views: z.ZodNumber;
|
|
13384
|
+
records: z.ZodNumber;
|
|
13385
|
+
fileTreeNodes: z.ZodNumber;
|
|
13386
|
+
files: z.ZodNumber;
|
|
13387
|
+
}, z.core.$strip>;
|
|
13388
|
+
pendingChangeRequests: z.ZodNumber;
|
|
13389
|
+
warnings: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
13390
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13391
|
+
};
|
|
13392
|
+
changeRequests: {
|
|
13393
|
+
list: _orpc_contract.ContractProcedure<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
13394
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
13395
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
13396
|
+
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
13397
|
+
in_review: "in_review";
|
|
13398
|
+
changes_requested: "changes_requested";
|
|
13399
|
+
approved: "approved";
|
|
13400
|
+
rejected: "rejected";
|
|
13401
|
+
merged: "merged";
|
|
13402
|
+
abandoned: "abandoned";
|
|
13403
|
+
conflict: "conflict";
|
|
13404
|
+
}>>>;
|
|
13405
|
+
mine: z.ZodOptional<z.ZodBoolean>;
|
|
13406
|
+
}, z.core.$strip>>>, z.ZodObject<{
|
|
13407
|
+
changeRequests: z.ZodArray<z.ZodObject<{
|
|
13408
|
+
id: z.ZodString;
|
|
13409
|
+
baseId: z.ZodNullable<z.ZodString>;
|
|
13410
|
+
targetType: z.ZodEnum<{
|
|
13411
|
+
base: "base";
|
|
13412
|
+
node: "node";
|
|
13413
|
+
}>;
|
|
13414
|
+
nodeId: z.ZodNullable<z.ZodString>;
|
|
13415
|
+
status: z.ZodEnum<{
|
|
13416
|
+
in_review: "in_review";
|
|
13417
|
+
changes_requested: "changes_requested";
|
|
13418
|
+
approved: "approved";
|
|
13419
|
+
rejected: "rejected";
|
|
13420
|
+
merged: "merged";
|
|
13421
|
+
abandoned: "abandoned";
|
|
13422
|
+
conflict: "conflict";
|
|
13423
|
+
}>;
|
|
13424
|
+
submittedBy: z.ZodString;
|
|
13425
|
+
submittedByUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13426
|
+
id: z.ZodString;
|
|
13427
|
+
name: z.ZodNullable<z.ZodString>;
|
|
13428
|
+
email: z.ZodNullable<z.ZodString>;
|
|
13429
|
+
image: z.ZodNullable<z.ZodString>;
|
|
13430
|
+
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13431
|
+
}, z.core.$strip>>>>;
|
|
13432
|
+
sourceMeta: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13433
|
+
reviewPolicySnapshot: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13434
|
+
mergeSummary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13435
|
+
rejectedReason: z.ZodNullable<z.ZodString>;
|
|
13436
|
+
reviewedAt: z.ZodNullable<z.ZodString>;
|
|
13437
|
+
mergedAt: z.ZodNullable<z.ZodString>;
|
|
13438
|
+
createdAt: z.ZodString;
|
|
13439
|
+
updatedAt: z.ZodString;
|
|
13440
|
+
base: z.ZodNullable<z.ZodObject<{
|
|
13441
|
+
id: z.ZodString;
|
|
13442
|
+
nodeId: z.ZodString;
|
|
13443
|
+
slug: z.ZodString;
|
|
13444
|
+
name: z.ZodString;
|
|
13445
|
+
description: z.ZodString;
|
|
13446
|
+
reviewPolicy: z.ZodObject<{
|
|
13447
|
+
kind: z.ZodLiteral<"single">;
|
|
13448
|
+
requiredApprovals: z.ZodNumber;
|
|
13449
|
+
}, z.core.$strip>;
|
|
13450
|
+
createdAt: z.ZodString;
|
|
13451
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
13452
|
+
id: z.ZodString;
|
|
13453
|
+
baseId: z.ZodString;
|
|
13454
|
+
slug: z.ZodString;
|
|
13455
|
+
name: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodEnum<{
|
|
13456
|
+
en: "en";
|
|
13457
|
+
"zh-CN": "zh-CN";
|
|
13458
|
+
"zh-TW": "zh-TW";
|
|
13459
|
+
ja: "ja";
|
|
13460
|
+
ko: "ko";
|
|
13461
|
+
de: "de";
|
|
13462
|
+
fr: "fr";
|
|
13463
|
+
es: "es";
|
|
13464
|
+
pt: "pt";
|
|
13465
|
+
}> & z.core.$partial, z.ZodString>]>;
|
|
13466
|
+
type: z.ZodEnum<{
|
|
13467
|
+
number: "number";
|
|
13468
|
+
email: "email";
|
|
13469
|
+
date: "date";
|
|
13470
|
+
text: "text";
|
|
13471
|
+
whiteboard: "whiteboard";
|
|
13472
|
+
html: "html";
|
|
13473
|
+
longtext: "longtext";
|
|
13474
|
+
markdown: "markdown";
|
|
13475
|
+
attachment: "attachment";
|
|
13476
|
+
relation: "relation";
|
|
13477
|
+
checkbox: "checkbox";
|
|
13478
|
+
select: "select";
|
|
13479
|
+
multiselect: "multiselect";
|
|
13480
|
+
url: "url";
|
|
13481
|
+
embed: "embed";
|
|
13482
|
+
phone: "phone";
|
|
13483
|
+
created_time: "created_time";
|
|
13484
|
+
updated_time: "updated_time";
|
|
13485
|
+
created_by: "created_by";
|
|
13486
|
+
updated_by: "updated_by";
|
|
13487
|
+
auto_number: "auto_number";
|
|
13488
|
+
ai_summary: "ai_summary";
|
|
13489
|
+
ai_tags: "ai_tags";
|
|
13490
|
+
code: "code";
|
|
13491
|
+
json: "json";
|
|
13492
|
+
yaml: "yaml";
|
|
13493
|
+
formula: "formula";
|
|
13494
|
+
lookup: "lookup";
|
|
13495
|
+
}>;
|
|
13496
|
+
required: z.ZodBoolean;
|
|
13497
|
+
position: z.ZodNumber;
|
|
13498
|
+
options: z.ZodDefault<z.ZodObject<{
|
|
13499
|
+
ai: z.ZodOptional<z.ZodObject<{
|
|
13500
|
+
model: z.ZodOptional<z.ZodString>;
|
|
13501
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
13502
|
+
reviewRequired: z.ZodOptional<z.ZodBoolean>;
|
|
13503
|
+
sourceFieldIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13504
|
+
}, z.core.$strip>>;
|
|
13505
|
+
attachment: z.ZodOptional<z.ZodObject<{
|
|
13506
|
+
maxFiles: z.ZodOptional<z.ZodNumber>;
|
|
13507
|
+
allowedMimeTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13508
|
+
maxFileSize: z.ZodOptional<z.ZodNumber>;
|
|
13509
|
+
}, z.core.$strip>>;
|
|
13510
|
+
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13511
|
+
color: z.ZodOptional<z.ZodString>;
|
|
13512
|
+
id: z.ZodString;
|
|
13513
|
+
name: z.ZodString;
|
|
13514
|
+
}, z.core.$strip>>>;
|
|
13515
|
+
code: z.ZodOptional<z.ZodObject<{
|
|
13516
|
+
language: z.ZodOptional<z.ZodString>;
|
|
13517
|
+
}, z.core.$strip>>;
|
|
13518
|
+
embed: z.ZodOptional<z.ZodObject<{
|
|
13519
|
+
aspectRatio: z.ZodOptional<z.ZodEnum<{
|
|
13520
|
+
"16:9": "16:9";
|
|
13521
|
+
"4:3": "4:3";
|
|
13522
|
+
"1:1": "1:1";
|
|
13523
|
+
}>>;
|
|
13524
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
13525
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13526
|
+
}, z.core.$strip>>;
|
|
13527
|
+
formula: z.ZodOptional<z.ZodObject<{
|
|
13528
|
+
expression: z.ZodString;
|
|
13529
|
+
}, z.core.$strip>>;
|
|
13530
|
+
inverseFieldId: z.ZodOptional<z.ZodString>;
|
|
13531
|
+
lookup: z.ZodOptional<z.ZodObject<{
|
|
13532
|
+
relationFieldSlug: z.ZodString;
|
|
13533
|
+
targetFieldSlug: z.ZodString;
|
|
13534
|
+
rollup: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
13535
|
+
values: "values";
|
|
13536
|
+
count: "count";
|
|
13537
|
+
sum: "sum";
|
|
13538
|
+
average: "average";
|
|
13539
|
+
min: "min";
|
|
13540
|
+
max: "max";
|
|
13541
|
+
concatenate: "concatenate";
|
|
13542
|
+
}>>>;
|
|
13543
|
+
limit: z.ZodOptional<z.ZodEnum<{
|
|
13544
|
+
all: "all";
|
|
13545
|
+
first: "first";
|
|
13546
|
+
}>>;
|
|
13547
|
+
}, z.core.$strip>>;
|
|
13548
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13549
|
+
number: z.ZodOptional<z.ZodObject<{
|
|
13550
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
13551
|
+
plain: "plain";
|
|
13552
|
+
currency: "currency";
|
|
13553
|
+
}>>;
|
|
13554
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
13555
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
13556
|
+
}, z.core.$strip>>;
|
|
13557
|
+
targetBaseId: z.ZodOptional<z.ZodString>;
|
|
13558
|
+
targetBaseSlug: z.ZodOptional<z.ZodString>;
|
|
13559
|
+
}, z.core.$strip>>;
|
|
13560
|
+
}, z.core.$strip>>;
|
|
13561
|
+
}, z.core.$strip>>;
|
|
13562
|
+
node: z.ZodNullable<z.ZodType<NodeOutput, unknown, z.core.$ZodTypeInternals<NodeOutput, unknown>>>;
|
|
13563
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
13564
|
+
id: z.ZodString;
|
|
13565
|
+
changeRequestId: z.ZodString;
|
|
13566
|
+
baseId: z.ZodNullable<z.ZodString>;
|
|
13567
|
+
targetType: z.ZodEnum<{
|
|
13568
|
+
base: "base";
|
|
13569
|
+
node: "node";
|
|
13570
|
+
}>;
|
|
13571
|
+
nodeId: z.ZodNullable<z.ZodString>;
|
|
13572
|
+
operation: z.ZodEnum<{
|
|
13573
|
+
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
13574
|
+
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
13575
|
+
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
13576
|
+
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
13577
|
+
record_create: "record_create";
|
|
13578
|
+
record_update: "record_update";
|
|
13579
|
+
record_delete: "record_delete";
|
|
13580
|
+
record_variant: "record_variant";
|
|
13581
|
+
view_create: "view_create";
|
|
13582
|
+
view_update: "view_update";
|
|
13583
|
+
view_delete: "view_delete";
|
|
13584
|
+
view_restore: "view_restore";
|
|
13585
|
+
base_add_field: "base_add_field";
|
|
13586
|
+
base_delete_field: "base_delete_field";
|
|
13587
|
+
base_update_field: "base_update_field";
|
|
13588
|
+
base_convert_field: "base_convert_field";
|
|
13589
|
+
base_reorder_fields: "base_reorder_fields";
|
|
13590
|
+
base_restore_field: "base_restore_field";
|
|
13591
|
+
base_archive: "base_archive";
|
|
13592
|
+
base_restore: "base_restore";
|
|
13593
|
+
record_restore: "record_restore";
|
|
13594
|
+
doc_update: "doc_update";
|
|
13595
|
+
node_create: "node_create";
|
|
13596
|
+
node_rename: "node_rename";
|
|
13597
|
+
node_delete: "node_delete";
|
|
13598
|
+
node_restore: "node_restore";
|
|
13599
|
+
node_move: "node_move";
|
|
13600
|
+
}>;
|
|
13601
|
+
status: z.ZodEnum<{
|
|
13602
|
+
archived: "archived";
|
|
13603
|
+
merged: "merged";
|
|
13604
|
+
pending: "pending";
|
|
13605
|
+
failed: "failed";
|
|
13606
|
+
}>;
|
|
13607
|
+
targetRecordId: z.ZodNullable<z.ZodString>;
|
|
13608
|
+
targetViewId: z.ZodNullable<z.ZodString>;
|
|
13609
|
+
filePath: z.ZodNullable<z.ZodString>;
|
|
13610
|
+
sourceRecordId: z.ZodNullable<z.ZodString>;
|
|
13611
|
+
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
13612
|
+
baseCommitId: z.ZodNullable<z.ZodString>;
|
|
13613
|
+
headCommitId: z.ZodString;
|
|
13614
|
+
deleteMode: z.ZodEnum<{
|
|
13615
|
+
archive: "archive";
|
|
13616
|
+
}>;
|
|
13617
|
+
mergedRecordId: z.ZodNullable<z.ZodString>;
|
|
13618
|
+
mergedViewId: z.ZodNullable<z.ZodString>;
|
|
13619
|
+
position: z.ZodNumber;
|
|
13620
|
+
createdAt: z.ZodString;
|
|
13621
|
+
updatedAt: z.ZodString;
|
|
13622
|
+
headCommit: z.ZodObject<{
|
|
13623
|
+
id: z.ZodString;
|
|
13624
|
+
baseId: z.ZodNullable<z.ZodString>;
|
|
13625
|
+
targetType: z.ZodEnum<{
|
|
13626
|
+
base: "base";
|
|
13627
|
+
node: "node";
|
|
13628
|
+
}>;
|
|
13629
|
+
nodeId: z.ZodNullable<z.ZodString>;
|
|
13630
|
+
operationId: z.ZodNullable<z.ZodString>;
|
|
13631
|
+
parentCommitId: z.ZodNullable<z.ZodString>;
|
|
13632
|
+
fields: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13633
|
+
operation: z.ZodEnum<{
|
|
13634
|
+
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
13635
|
+
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
13636
|
+
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
13637
|
+
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
13638
|
+
record_create: "record_create";
|
|
13639
|
+
record_update: "record_update";
|
|
13640
|
+
record_delete: "record_delete";
|
|
13641
|
+
record_variant: "record_variant";
|
|
13642
|
+
view_create: "view_create";
|
|
13643
|
+
view_update: "view_update";
|
|
13644
|
+
view_delete: "view_delete";
|
|
13645
|
+
view_restore: "view_restore";
|
|
13646
|
+
base_add_field: "base_add_field";
|
|
13647
|
+
base_delete_field: "base_delete_field";
|
|
13648
|
+
base_update_field: "base_update_field";
|
|
13649
|
+
base_convert_field: "base_convert_field";
|
|
13650
|
+
base_reorder_fields: "base_reorder_fields";
|
|
13651
|
+
base_restore_field: "base_restore_field";
|
|
13652
|
+
base_archive: "base_archive";
|
|
13653
|
+
base_restore: "base_restore";
|
|
13654
|
+
record_restore: "record_restore";
|
|
13655
|
+
doc_update: "doc_update";
|
|
13656
|
+
node_create: "node_create";
|
|
13657
|
+
node_rename: "node_rename";
|
|
13658
|
+
node_delete: "node_delete";
|
|
13659
|
+
node_restore: "node_restore";
|
|
13660
|
+
node_move: "node_move";
|
|
13661
|
+
}>;
|
|
13662
|
+
message: z.ZodString;
|
|
13663
|
+
author: z.ZodString;
|
|
13664
|
+
authorUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13665
|
+
id: z.ZodString;
|
|
13666
|
+
name: z.ZodNullable<z.ZodString>;
|
|
13667
|
+
email: z.ZodNullable<z.ZodString>;
|
|
13668
|
+
image: z.ZodNullable<z.ZodString>;
|
|
13669
|
+
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13670
|
+
}, z.core.$strip>>>>;
|
|
13671
|
+
createdAt: z.ZodString;
|
|
13672
|
+
}, z.core.$strip>;
|
|
13673
|
+
baseFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13674
|
+
}, z.core.$strip>>;
|
|
13675
|
+
primaryOperation: z.ZodNullable<z.ZodObject<{
|
|
13676
|
+
id: z.ZodString;
|
|
13677
|
+
changeRequestId: z.ZodString;
|
|
13678
|
+
baseId: z.ZodNullable<z.ZodString>;
|
|
13679
|
+
targetType: z.ZodEnum<{
|
|
13680
|
+
base: "base";
|
|
13681
|
+
node: "node";
|
|
13682
|
+
}>;
|
|
13683
|
+
nodeId: z.ZodNullable<z.ZodString>;
|
|
13684
|
+
operation: z.ZodEnum<{
|
|
13685
|
+
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
13686
|
+
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
13687
|
+
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
13688
|
+
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
13689
|
+
record_create: "record_create";
|
|
13690
|
+
record_update: "record_update";
|
|
13691
|
+
record_delete: "record_delete";
|
|
13692
|
+
record_variant: "record_variant";
|
|
13693
|
+
view_create: "view_create";
|
|
13694
|
+
view_update: "view_update";
|
|
13695
|
+
view_delete: "view_delete";
|
|
13696
|
+
view_restore: "view_restore";
|
|
13697
|
+
base_add_field: "base_add_field";
|
|
13698
|
+
base_delete_field: "base_delete_field";
|
|
13699
|
+
base_update_field: "base_update_field";
|
|
13700
|
+
base_convert_field: "base_convert_field";
|
|
13701
|
+
base_reorder_fields: "base_reorder_fields";
|
|
13702
|
+
base_restore_field: "base_restore_field";
|
|
13703
|
+
base_archive: "base_archive";
|
|
13704
|
+
base_restore: "base_restore";
|
|
13705
|
+
record_restore: "record_restore";
|
|
13706
|
+
doc_update: "doc_update";
|
|
13707
|
+
node_create: "node_create";
|
|
13708
|
+
node_rename: "node_rename";
|
|
13709
|
+
node_delete: "node_delete";
|
|
13710
|
+
node_restore: "node_restore";
|
|
13711
|
+
node_move: "node_move";
|
|
13712
|
+
}>;
|
|
13713
|
+
status: z.ZodEnum<{
|
|
13714
|
+
archived: "archived";
|
|
13715
|
+
merged: "merged";
|
|
13716
|
+
pending: "pending";
|
|
13717
|
+
failed: "failed";
|
|
13718
|
+
}>;
|
|
13719
|
+
targetRecordId: z.ZodNullable<z.ZodString>;
|
|
13720
|
+
targetViewId: z.ZodNullable<z.ZodString>;
|
|
13721
|
+
filePath: z.ZodNullable<z.ZodString>;
|
|
13722
|
+
sourceRecordId: z.ZodNullable<z.ZodString>;
|
|
13723
|
+
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
13724
|
+
baseCommitId: z.ZodNullable<z.ZodString>;
|
|
13725
|
+
headCommitId: z.ZodString;
|
|
13726
|
+
deleteMode: z.ZodEnum<{
|
|
13727
|
+
archive: "archive";
|
|
13728
|
+
}>;
|
|
13729
|
+
mergedRecordId: z.ZodNullable<z.ZodString>;
|
|
13730
|
+
mergedViewId: z.ZodNullable<z.ZodString>;
|
|
13731
|
+
position: z.ZodNumber;
|
|
13732
|
+
createdAt: z.ZodString;
|
|
13733
|
+
updatedAt: z.ZodString;
|
|
13734
|
+
headCommit: z.ZodObject<{
|
|
13735
|
+
id: z.ZodString;
|
|
13736
|
+
baseId: z.ZodNullable<z.ZodString>;
|
|
13737
|
+
targetType: z.ZodEnum<{
|
|
13738
|
+
base: "base";
|
|
13739
|
+
node: "node";
|
|
13740
|
+
}>;
|
|
13741
|
+
nodeId: z.ZodNullable<z.ZodString>;
|
|
13742
|
+
operationId: z.ZodNullable<z.ZodString>;
|
|
13743
|
+
parentCommitId: z.ZodNullable<z.ZodString>;
|
|
13744
|
+
fields: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13745
|
+
operation: z.ZodEnum<{
|
|
13746
|
+
[x: `${string}_file_create`]: `${string}_file_create`;
|
|
13747
|
+
[x: `${string}_file_update`]: `${string}_file_update`;
|
|
13748
|
+
[x: `${string}_file_delete`]: `${string}_file_delete`;
|
|
13749
|
+
[x: `${string}_metadata_update`]: `${string}_metadata_update`;
|
|
13750
|
+
record_create: "record_create";
|
|
13751
|
+
record_update: "record_update";
|
|
13752
|
+
record_delete: "record_delete";
|
|
13753
|
+
record_variant: "record_variant";
|
|
13754
|
+
view_create: "view_create";
|
|
13755
|
+
view_update: "view_update";
|
|
13756
|
+
view_delete: "view_delete";
|
|
13757
|
+
view_restore: "view_restore";
|
|
13758
|
+
base_add_field: "base_add_field";
|
|
13759
|
+
base_delete_field: "base_delete_field";
|
|
13760
|
+
base_update_field: "base_update_field";
|
|
13761
|
+
base_convert_field: "base_convert_field";
|
|
13762
|
+
base_reorder_fields: "base_reorder_fields";
|
|
13763
|
+
base_restore_field: "base_restore_field";
|
|
13764
|
+
base_archive: "base_archive";
|
|
13765
|
+
base_restore: "base_restore";
|
|
13766
|
+
record_restore: "record_restore";
|
|
13767
|
+
doc_update: "doc_update";
|
|
13768
|
+
node_create: "node_create";
|
|
13769
|
+
node_rename: "node_rename";
|
|
13770
|
+
node_delete: "node_delete";
|
|
13771
|
+
node_restore: "node_restore";
|
|
13772
|
+
node_move: "node_move";
|
|
13773
|
+
}>;
|
|
13774
|
+
message: z.ZodString;
|
|
13775
|
+
author: z.ZodString;
|
|
13776
|
+
authorUser: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13777
|
+
id: z.ZodString;
|
|
13778
|
+
name: z.ZodNullable<z.ZodString>;
|
|
13779
|
+
email: z.ZodNullable<z.ZodString>;
|
|
13780
|
+
image: z.ZodNullable<z.ZodString>;
|
|
13781
|
+
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13782
|
+
}, z.core.$strip>>>>;
|
|
13783
|
+
createdAt: z.ZodString;
|
|
13784
|
+
}, z.core.$strip>;
|
|
13785
|
+
baseFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13786
|
+
}, z.core.$strip>>;
|
|
13787
|
+
operationCount: z.ZodNumber;
|
|
13788
|
+
reviews: z.ZodArray<z.ZodObject<{
|
|
13789
|
+
id: z.ZodString;
|
|
13790
|
+
changeRequestId: z.ZodString;
|
|
13791
|
+
reviewerId: z.ZodString;
|
|
13792
|
+
reviewer: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13793
|
+
id: z.ZodString;
|
|
13794
|
+
name: z.ZodNullable<z.ZodString>;
|
|
13795
|
+
email: z.ZodNullable<z.ZodString>;
|
|
13796
|
+
image: z.ZodNullable<z.ZodString>;
|
|
13797
|
+
role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13798
|
+
}, z.core.$strip>>>>;
|
|
13799
|
+
verdict: z.ZodEnum<{
|
|
13800
|
+
approved: "approved";
|
|
13801
|
+
rejected: "rejected";
|
|
13802
|
+
}>;
|
|
13803
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
13804
|
+
visibleOperationHeads: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13805
|
+
createdAt: z.ZodString;
|
|
13806
|
+
}, z.core.$strip>>;
|
|
13807
|
+
}, z.core.$strip>>;
|
|
13808
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
13809
|
+
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
13810
|
+
listPage: _orpc_contract.ContractProcedure<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
13811
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
13812
|
+
pageSize: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
13795
13813
|
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
13796
13814
|
in_review: "in_review";
|
|
13797
13815
|
changes_requested: "changes_requested";
|
|
@@ -14204,7 +14222,10 @@ declare const cloudContract: {
|
|
|
14204
14222
|
createdAt: z.ZodString;
|
|
14205
14223
|
}, z.core.$strip>>;
|
|
14206
14224
|
}, z.core.$strip>>;
|
|
14207
|
-
|
|
14225
|
+
total: z.ZodNumber;
|
|
14226
|
+
totalPages: z.ZodNumber;
|
|
14227
|
+
page: z.ZodNumber;
|
|
14228
|
+
pageSize: z.ZodNumber;
|
|
14208
14229
|
}, z.core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
14209
14230
|
counts: _orpc_contract.ContractProcedure<_orpc_contract.Schema<unknown, unknown>, z.ZodObject<{
|
|
14210
14231
|
review: z.ZodNumber;
|