@swirls/sdk 0.0.8 → 0.0.9
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/client/client.d.ts +17 -0
- package/package.json +1 -1
package/dist/client/client.d.ts
CHANGED
|
@@ -5522,6 +5522,13 @@ declare class Swirls {
|
|
|
5522
5522
|
}, undefined, undefined>>;
|
|
5523
5523
|
totalCount: zod.ZodNumber;
|
|
5524
5524
|
}, zod_v4_core.$strip>, Record<never, never>>;
|
|
5525
|
+
submitForm: _orpc_contract.ContractProcedureClient<Record<never, never>, zod.ZodObject<{
|
|
5526
|
+
formId: zod.ZodString;
|
|
5527
|
+
data: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
5528
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
5529
|
+
message: zod.ZodString;
|
|
5530
|
+
executionIds: zod.ZodArray<zod.ZodString>;
|
|
5531
|
+
}, zod_v4_core.$strip>, Record<never, never>>;
|
|
5525
5532
|
};
|
|
5526
5533
|
documents: {
|
|
5527
5534
|
createDocument: _orpc_contract.ContractProcedureClient<Record<never, never>, zod.ZodObject<{
|
|
@@ -13591,6 +13598,16 @@ declare class Swirls {
|
|
|
13591
13598
|
last?: number | undefined;
|
|
13592
13599
|
} | undefined;
|
|
13593
13600
|
}>;
|
|
13601
|
+
submitForm: _orpc_tanstack_query.ProcedureUtils<Record<never, never>, {
|
|
13602
|
+
formId: string;
|
|
13603
|
+
data: Record<string, any>;
|
|
13604
|
+
}, {
|
|
13605
|
+
message: string;
|
|
13606
|
+
executionIds: string[];
|
|
13607
|
+
}, Error> & _orpc_tanstack_query.GeneralUtils<{
|
|
13608
|
+
formId: string;
|
|
13609
|
+
data: Record<string, any>;
|
|
13610
|
+
}>;
|
|
13594
13611
|
} & _orpc_tanstack_query.GeneralUtils<unknown>;
|
|
13595
13612
|
documents: {
|
|
13596
13613
|
createDocument: _orpc_tanstack_query.ProcedureUtils<Record<never, never>, {
|