@avaprotocol/sdk-js 1.3.6 → 1.3.8
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.mts +234 -40
- package/dist/index.d.ts +234 -40
- package/dist/index.js +1194 -272
- package/dist/index.mjs +1191 -271
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -645,16 +645,38 @@ declare class Execution$1 extends jspb.Message {
|
|
|
645
645
|
getError(): string;
|
|
646
646
|
setError(value: string): Execution$1;
|
|
647
647
|
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
getResult(): string;
|
|
653
|
-
setResult(value: string): Execution$1;
|
|
648
|
+
hasReason(): boolean;
|
|
649
|
+
clearReason(): void;
|
|
650
|
+
getReason(): TriggerReason$1 | undefined;
|
|
651
|
+
setReason(value?: TriggerReason$1): Execution$1;
|
|
654
652
|
clearStepsList(): void;
|
|
655
653
|
getStepsList(): Array<Execution$1.Step>;
|
|
656
654
|
setStepsList(value: Array<Execution$1.Step>): Execution$1;
|
|
657
655
|
addSteps(value?: Execution$1.Step, index?: number): Execution$1.Step;
|
|
656
|
+
getTriggerName(): string;
|
|
657
|
+
setTriggerName(value: string): Execution$1;
|
|
658
|
+
|
|
659
|
+
hasTransferLog(): boolean;
|
|
660
|
+
clearTransferLog(): void;
|
|
661
|
+
getTransferLog(): Execution$1.TransferLogOutput | undefined;
|
|
662
|
+
setTransferLog(value?: Execution$1.TransferLogOutput): Execution$1;
|
|
663
|
+
|
|
664
|
+
hasEvmLog(): boolean;
|
|
665
|
+
clearEvmLog(): void;
|
|
666
|
+
getEvmLog(): Execution$1.EvmLogOutput | undefined;
|
|
667
|
+
setEvmLog(value?: Execution$1.EvmLogOutput): Execution$1;
|
|
668
|
+
|
|
669
|
+
hasBlock(): boolean;
|
|
670
|
+
clearBlock(): void;
|
|
671
|
+
getBlock(): Execution$1.BlockOutput | undefined;
|
|
672
|
+
setBlock(value?: Execution$1.BlockOutput): Execution$1;
|
|
673
|
+
|
|
674
|
+
hasTime(): boolean;
|
|
675
|
+
clearTime(): void;
|
|
676
|
+
getTime(): Execution$1.TimeOutput | undefined;
|
|
677
|
+
setTime(value?: Execution$1.TimeOutput): Execution$1;
|
|
678
|
+
|
|
679
|
+
getOutputDataCase(): Execution$1.OutputDataCase;
|
|
658
680
|
|
|
659
681
|
serializeBinary(): Uint8Array;
|
|
660
682
|
toObject(includeInstance?: boolean): Execution$1.AsObject;
|
|
@@ -673,9 +695,13 @@ declare namespace Execution$1 {
|
|
|
673
695
|
endAt: number,
|
|
674
696
|
success: boolean,
|
|
675
697
|
error: string,
|
|
676
|
-
|
|
677
|
-
result: string,
|
|
698
|
+
reason?: TriggerReason$1.AsObject,
|
|
678
699
|
stepsList: Array<Execution$1.Step.AsObject>,
|
|
700
|
+
triggerName: string,
|
|
701
|
+
transferLog?: Execution$1.TransferLogOutput.AsObject,
|
|
702
|
+
evmLog?: Execution$1.EvmLogOutput.AsObject,
|
|
703
|
+
block?: Execution$1.BlockOutput.AsObject,
|
|
704
|
+
time?: Execution$1.TimeOutput.AsObject,
|
|
679
705
|
}
|
|
680
706
|
|
|
681
707
|
|
|
@@ -694,6 +720,10 @@ declare namespace Execution$1 {
|
|
|
694
720
|
setStartAt(value: number): Step;
|
|
695
721
|
getEndAt(): number;
|
|
696
722
|
setEndAt(value: number): Step;
|
|
723
|
+
clearInputsList(): void;
|
|
724
|
+
getInputsList(): Array<string>;
|
|
725
|
+
setInputsList(value: Array<string>): Step;
|
|
726
|
+
addInputs(value: string, index?: number): string;
|
|
697
727
|
|
|
698
728
|
serializeBinary(): Uint8Array;
|
|
699
729
|
toObject(includeInstance?: boolean): Step.AsObject;
|
|
@@ -714,9 +744,155 @@ declare namespace Execution$1 {
|
|
|
714
744
|
error: string,
|
|
715
745
|
startAt: number,
|
|
716
746
|
endAt: number,
|
|
747
|
+
inputsList: Array<string>,
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
export class TransferLogOutput extends jspb.Message {
|
|
752
|
+
getTokenName(): string;
|
|
753
|
+
setTokenName(value: string): TransferLogOutput;
|
|
754
|
+
getTokenSymbol(): string;
|
|
755
|
+
setTokenSymbol(value: string): TransferLogOutput;
|
|
756
|
+
getTokenDecimals(): number;
|
|
757
|
+
setTokenDecimals(value: number): TransferLogOutput;
|
|
758
|
+
getTransactionHash(): string;
|
|
759
|
+
setTransactionHash(value: string): TransferLogOutput;
|
|
760
|
+
getAddress(): string;
|
|
761
|
+
setAddress(value: string): TransferLogOutput;
|
|
762
|
+
getBlockNumber(): number;
|
|
763
|
+
setBlockNumber(value: number): TransferLogOutput;
|
|
764
|
+
getBlockTimestamp(): number;
|
|
765
|
+
setBlockTimestamp(value: number): TransferLogOutput;
|
|
766
|
+
getFromAddress(): string;
|
|
767
|
+
setFromAddress(value: string): TransferLogOutput;
|
|
768
|
+
getToAddress(): string;
|
|
769
|
+
setToAddress(value: string): TransferLogOutput;
|
|
770
|
+
getValue(): string;
|
|
771
|
+
setValue(value: string): TransferLogOutput;
|
|
772
|
+
getValueFormatted(): string;
|
|
773
|
+
setValueFormatted(value: string): TransferLogOutput;
|
|
774
|
+
getTransactionIndex(): number;
|
|
775
|
+
setTransactionIndex(value: number): TransferLogOutput;
|
|
776
|
+
|
|
777
|
+
serializeBinary(): Uint8Array;
|
|
778
|
+
toObject(includeInstance?: boolean): TransferLogOutput.AsObject;
|
|
779
|
+
static toObject(includeInstance: boolean, msg: TransferLogOutput): TransferLogOutput.AsObject;
|
|
780
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
781
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
782
|
+
static serializeBinaryToWriter(message: TransferLogOutput, writer: jspb.BinaryWriter): void;
|
|
783
|
+
static deserializeBinary(bytes: Uint8Array): TransferLogOutput;
|
|
784
|
+
static deserializeBinaryFromReader(message: TransferLogOutput, reader: jspb.BinaryReader): TransferLogOutput;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
export namespace TransferLogOutput {
|
|
788
|
+
export type AsObject = {
|
|
789
|
+
tokenName: string,
|
|
790
|
+
tokenSymbol: string,
|
|
791
|
+
tokenDecimals: number,
|
|
792
|
+
transactionHash: string,
|
|
793
|
+
address: string,
|
|
794
|
+
blockNumber: number,
|
|
795
|
+
blockTimestamp: number,
|
|
796
|
+
fromAddress: string,
|
|
797
|
+
toAddress: string,
|
|
798
|
+
value: string,
|
|
799
|
+
valueFormatted: string,
|
|
800
|
+
transactionIndex: number,
|
|
717
801
|
}
|
|
718
802
|
}
|
|
719
803
|
|
|
804
|
+
export class EvmLogOutput extends jspb.Message {
|
|
805
|
+
getAddress(): string;
|
|
806
|
+
setAddress(value: string): EvmLogOutput;
|
|
807
|
+
getBlockHash(): string;
|
|
808
|
+
setBlockHash(value: string): EvmLogOutput;
|
|
809
|
+
getBlockNumber(): number;
|
|
810
|
+
setBlockNumber(value: number): EvmLogOutput;
|
|
811
|
+
getData(): string;
|
|
812
|
+
setData(value: string): EvmLogOutput;
|
|
813
|
+
getIndex(): number;
|
|
814
|
+
setIndex(value: number): EvmLogOutput;
|
|
815
|
+
clearTopicsList(): void;
|
|
816
|
+
getTopicsList(): Array<string>;
|
|
817
|
+
setTopicsList(value: Array<string>): EvmLogOutput;
|
|
818
|
+
addTopics(value: string, index?: number): string;
|
|
819
|
+
getTransactionHash(): string;
|
|
820
|
+
setTransactionHash(value: string): EvmLogOutput;
|
|
821
|
+
getTransactionIndex(): number;
|
|
822
|
+
setTransactionIndex(value: number): EvmLogOutput;
|
|
823
|
+
|
|
824
|
+
serializeBinary(): Uint8Array;
|
|
825
|
+
toObject(includeInstance?: boolean): EvmLogOutput.AsObject;
|
|
826
|
+
static toObject(includeInstance: boolean, msg: EvmLogOutput): EvmLogOutput.AsObject;
|
|
827
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
828
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
829
|
+
static serializeBinaryToWriter(message: EvmLogOutput, writer: jspb.BinaryWriter): void;
|
|
830
|
+
static deserializeBinary(bytes: Uint8Array): EvmLogOutput;
|
|
831
|
+
static deserializeBinaryFromReader(message: EvmLogOutput, reader: jspb.BinaryReader): EvmLogOutput;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
export namespace EvmLogOutput {
|
|
835
|
+
export type AsObject = {
|
|
836
|
+
address: string,
|
|
837
|
+
blockHash: string,
|
|
838
|
+
blockNumber: number,
|
|
839
|
+
data: string,
|
|
840
|
+
index: number,
|
|
841
|
+
topicsList: Array<string>,
|
|
842
|
+
transactionHash: string,
|
|
843
|
+
transactionIndex: number,
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
export class BlockOutput extends jspb.Message {
|
|
848
|
+
getBlockNumber(): number;
|
|
849
|
+
setBlockNumber(value: number): BlockOutput;
|
|
850
|
+
|
|
851
|
+
serializeBinary(): Uint8Array;
|
|
852
|
+
toObject(includeInstance?: boolean): BlockOutput.AsObject;
|
|
853
|
+
static toObject(includeInstance: boolean, msg: BlockOutput): BlockOutput.AsObject;
|
|
854
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
855
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
856
|
+
static serializeBinaryToWriter(message: BlockOutput, writer: jspb.BinaryWriter): void;
|
|
857
|
+
static deserializeBinary(bytes: Uint8Array): BlockOutput;
|
|
858
|
+
static deserializeBinaryFromReader(message: BlockOutput, reader: jspb.BinaryReader): BlockOutput;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
export namespace BlockOutput {
|
|
862
|
+
export type AsObject = {
|
|
863
|
+
blockNumber: number,
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
export class TimeOutput extends jspb.Message {
|
|
868
|
+
getEpoch(): number;
|
|
869
|
+
setEpoch(value: number): TimeOutput;
|
|
870
|
+
|
|
871
|
+
serializeBinary(): Uint8Array;
|
|
872
|
+
toObject(includeInstance?: boolean): TimeOutput.AsObject;
|
|
873
|
+
static toObject(includeInstance: boolean, msg: TimeOutput): TimeOutput.AsObject;
|
|
874
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
875
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
876
|
+
static serializeBinaryToWriter(message: TimeOutput, writer: jspb.BinaryWriter): void;
|
|
877
|
+
static deserializeBinary(bytes: Uint8Array): TimeOutput;
|
|
878
|
+
static deserializeBinaryFromReader(message: TimeOutput, reader: jspb.BinaryReader): TimeOutput;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
export namespace TimeOutput {
|
|
882
|
+
export type AsObject = {
|
|
883
|
+
epoch: number,
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
export enum OutputDataCase {
|
|
889
|
+
OUTPUT_DATA_NOT_SET = 0,
|
|
890
|
+
TRANSFER_LOG = 10,
|
|
891
|
+
EVM_LOG = 11,
|
|
892
|
+
BLOCK = 12,
|
|
893
|
+
TIME = 13,
|
|
894
|
+
}
|
|
895
|
+
|
|
720
896
|
}
|
|
721
897
|
|
|
722
898
|
declare class Task extends jspb.Message {
|
|
@@ -1235,35 +1411,35 @@ declare namespace KeyResp {
|
|
|
1235
1411
|
}
|
|
1236
1412
|
}
|
|
1237
1413
|
|
|
1238
|
-
declare class
|
|
1414
|
+
declare class TriggerReason$1 extends jspb.Message {
|
|
1239
1415
|
getBlockNumber(): number;
|
|
1240
|
-
setBlockNumber(value: number):
|
|
1416
|
+
setBlockNumber(value: number): TriggerReason$1;
|
|
1241
1417
|
getLogIndex(): number;
|
|
1242
|
-
setLogIndex(value: number):
|
|
1418
|
+
setLogIndex(value: number): TriggerReason$1;
|
|
1243
1419
|
getTxHash(): string;
|
|
1244
|
-
setTxHash(value: string):
|
|
1420
|
+
setTxHash(value: string): TriggerReason$1;
|
|
1245
1421
|
getEpoch(): number;
|
|
1246
|
-
setEpoch(value: number):
|
|
1247
|
-
getType():
|
|
1248
|
-
setType(value:
|
|
1422
|
+
setEpoch(value: number): TriggerReason$1;
|
|
1423
|
+
getType(): TriggerReason$1.TriggerType;
|
|
1424
|
+
setType(value: TriggerReason$1.TriggerType): TriggerReason$1;
|
|
1249
1425
|
|
|
1250
1426
|
serializeBinary(): Uint8Array;
|
|
1251
|
-
toObject(includeInstance?: boolean):
|
|
1252
|
-
static toObject(includeInstance: boolean, msg:
|
|
1427
|
+
toObject(includeInstance?: boolean): TriggerReason$1.AsObject;
|
|
1428
|
+
static toObject(includeInstance: boolean, msg: TriggerReason$1): TriggerReason$1.AsObject;
|
|
1253
1429
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1254
1430
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1255
|
-
static serializeBinaryToWriter(message:
|
|
1256
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
1257
|
-
static deserializeBinaryFromReader(message:
|
|
1431
|
+
static serializeBinaryToWriter(message: TriggerReason$1, writer: jspb.BinaryWriter): void;
|
|
1432
|
+
static deserializeBinary(bytes: Uint8Array): TriggerReason$1;
|
|
1433
|
+
static deserializeBinaryFromReader(message: TriggerReason$1, reader: jspb.BinaryReader): TriggerReason$1;
|
|
1258
1434
|
}
|
|
1259
1435
|
|
|
1260
|
-
declare namespace
|
|
1436
|
+
declare namespace TriggerReason$1 {
|
|
1261
1437
|
export type AsObject = {
|
|
1262
1438
|
blockNumber: number,
|
|
1263
1439
|
logIndex: number,
|
|
1264
1440
|
txHash: string,
|
|
1265
1441
|
epoch: number,
|
|
1266
|
-
type:
|
|
1442
|
+
type: TriggerReason$1.TriggerType,
|
|
1267
1443
|
}
|
|
1268
1444
|
|
|
1269
1445
|
export enum TriggerType {
|
|
@@ -1345,10 +1521,10 @@ declare class UserTriggerTaskReq extends jspb.Message {
|
|
|
1345
1521
|
getTaskId(): string;
|
|
1346
1522
|
setTaskId(value: string): UserTriggerTaskReq;
|
|
1347
1523
|
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1524
|
+
hasReason(): boolean;
|
|
1525
|
+
clearReason(): void;
|
|
1526
|
+
getReason(): TriggerReason$1 | undefined;
|
|
1527
|
+
setReason(value?: TriggerReason$1): UserTriggerTaskReq;
|
|
1352
1528
|
getIsBlocking(): boolean;
|
|
1353
1529
|
setIsBlocking(value: boolean): UserTriggerTaskReq;
|
|
1354
1530
|
|
|
@@ -1365,7 +1541,7 @@ declare class UserTriggerTaskReq extends jspb.Message {
|
|
|
1365
1541
|
declare namespace UserTriggerTaskReq {
|
|
1366
1542
|
export type AsObject = {
|
|
1367
1543
|
taskId: string,
|
|
1368
|
-
|
|
1544
|
+
reason?: TriggerReason$1.AsObject,
|
|
1369
1545
|
isBlocking: boolean,
|
|
1370
1546
|
}
|
|
1371
1547
|
}
|
|
@@ -1795,7 +1971,7 @@ declare class Workflow implements WorkflowProps {
|
|
|
1795
1971
|
toRequest(): CreateTaskReq;
|
|
1796
1972
|
}
|
|
1797
1973
|
|
|
1798
|
-
type
|
|
1974
|
+
type TriggerReasonProps = {
|
|
1799
1975
|
type: TriggerType.FixedTime;
|
|
1800
1976
|
epoch: number;
|
|
1801
1977
|
} | {
|
|
@@ -1814,15 +1990,15 @@ type TriggerMetadataProps = {
|
|
|
1814
1990
|
} | {
|
|
1815
1991
|
type: TriggerType.Unset;
|
|
1816
1992
|
};
|
|
1817
|
-
declare class
|
|
1993
|
+
declare class TriggerReason {
|
|
1818
1994
|
type: TriggerType;
|
|
1819
1995
|
blockNumber?: number;
|
|
1820
1996
|
epoch?: number;
|
|
1821
1997
|
logIndex?: number;
|
|
1822
1998
|
txHash?: string;
|
|
1823
|
-
constructor(props:
|
|
1824
|
-
static fromResponse(data:
|
|
1825
|
-
toRequest():
|
|
1999
|
+
constructor(props: TriggerReasonProps);
|
|
2000
|
+
static fromResponse(data: TriggerReason$1 | undefined): TriggerReason | undefined;
|
|
2001
|
+
toRequest(): TriggerReason$1;
|
|
1826
2002
|
}
|
|
1827
2003
|
|
|
1828
2004
|
type StepProps = Execution$1.Step.AsObject;
|
|
@@ -1834,14 +2010,17 @@ declare class Step implements StepProps {
|
|
|
1834
2010
|
error: string;
|
|
1835
2011
|
startAt: number;
|
|
1836
2012
|
endAt: number;
|
|
2013
|
+
inputsList: string[];
|
|
1837
2014
|
constructor(props: StepProps);
|
|
1838
2015
|
static fromResponse(step: Execution$1.Step): Step;
|
|
1839
2016
|
toRequest(): Execution$1.Step;
|
|
1840
2017
|
}
|
|
1841
2018
|
|
|
1842
|
-
type
|
|
2019
|
+
type OutputDataProps = Execution$1.EvmLogOutput.AsObject | Execution$1.TransferLogOutput.AsObject | Execution$1.BlockOutput.AsObject | Execution$1.TimeOutput.AsObject | undefined;
|
|
2020
|
+
type ExecutionProps = Omit<Execution$1.AsObject, "stepsList" | "reason" | "transferLog" | "evmLog" | "block" | "time"> & {
|
|
1843
2021
|
stepsList: Step[];
|
|
1844
|
-
|
|
2022
|
+
triggerReason: TriggerReason | undefined;
|
|
2023
|
+
outputData: OutputDataProps;
|
|
1845
2024
|
};
|
|
1846
2025
|
declare class Execution implements ExecutionProps {
|
|
1847
2026
|
id: string;
|
|
@@ -1849,12 +2028,12 @@ declare class Execution implements ExecutionProps {
|
|
|
1849
2028
|
endAt: number;
|
|
1850
2029
|
success: boolean;
|
|
1851
2030
|
error: string;
|
|
1852
|
-
triggerMetadata: TriggerMetadata | undefined;
|
|
1853
|
-
result: string;
|
|
1854
2031
|
stepsList: Step[];
|
|
2032
|
+
triggerReason: TriggerReason | undefined;
|
|
2033
|
+
triggerName: string;
|
|
2034
|
+
outputData: OutputDataProps;
|
|
1855
2035
|
constructor(props: ExecutionProps);
|
|
1856
2036
|
static fromResponse(execution: Execution$1): Execution;
|
|
1857
|
-
toRequest(): Execution$1;
|
|
1858
2037
|
}
|
|
1859
2038
|
|
|
1860
2039
|
type ContractWriteNodeData = ContractWriteNode$1.AsObject;
|
|
@@ -1999,6 +2178,21 @@ declare class TriggerFactory {
|
|
|
1999
2178
|
static fromResponse(raw: TaskTrigger): Trigger;
|
|
2000
2179
|
}
|
|
2001
2180
|
|
|
2181
|
+
type SecretProps = {
|
|
2182
|
+
name: string;
|
|
2183
|
+
secret: string;
|
|
2184
|
+
workflowId?: string;
|
|
2185
|
+
orgId?: string;
|
|
2186
|
+
};
|
|
2187
|
+
declare class Secret implements SecretProps {
|
|
2188
|
+
name: string;
|
|
2189
|
+
secret: string;
|
|
2190
|
+
workflowId?: string;
|
|
2191
|
+
orgId?: string;
|
|
2192
|
+
constructor(props: SecretProps);
|
|
2193
|
+
toRequest(): CreateOrUpdateSecretReq;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2002
2196
|
declare class BaseClient {
|
|
2003
2197
|
readonly endpoint: string;
|
|
2004
2198
|
readonly rpcClient: AggregatorClient;
|
|
@@ -2147,9 +2341,9 @@ declare class Client extends BaseClient {
|
|
|
2147
2341
|
* @param options - Request options
|
|
2148
2342
|
* @returns {Promise<avs_pb.UserTriggerTaskResp>} - The response from the trigger workflow call
|
|
2149
2343
|
*/
|
|
2150
|
-
triggerWorkflow({ id,
|
|
2344
|
+
triggerWorkflow({ id, reason, isBlocking, }: {
|
|
2151
2345
|
id: string;
|
|
2152
|
-
|
|
2346
|
+
reason: TriggerReasonProps;
|
|
2153
2347
|
isBlocking: boolean;
|
|
2154
2348
|
}, options?: RequestOptions): Promise<UserTriggerTaskResp.AsObject>;
|
|
2155
2349
|
/**
|
|
@@ -2192,4 +2386,4 @@ declare class Client extends BaseClient {
|
|
|
2192
2386
|
deleteSecret(name: string, options?: SecretRequestOptions): Promise<boolean>;
|
|
2193
2387
|
}
|
|
2194
2388
|
|
|
2195
|
-
export { AUTH_KEY_HEADER, BlockTrigger, type BlockTriggerDataType, type BlockTriggerProps, BranchNode, type BranchNodeData, type BranchNodeProps, type ClientOption, ContractReadNode, type ContractReadNodeData, type ContractReadNodeProps, ContractWriteNode, type ContractWriteNodeData, type ContractWriteNodeProps, CronTrigger, type CronTriggerDataType, type CronTriggerProps, CustomCodeLangs, CustomCodeNode, type CustomCodeNodeData, type CustomCodeNodeProps, DEFAULT_LIMIT, ETHTransferNode, type ETHTransferNodeData, type ETHTransferNodeProps, Edge, type EdgeProps, type Environment, EventTrigger, type EventTriggerDataType, type EventTriggerProps, Execution, type ExecutionProps, ExecutionStatus, FilterNode, type FilterNodeData, type FilterNodeProps, FixedTimeTrigger, type FixedTimeTriggerDataType, type FixedTimeTriggerProps, type GetExecutionsRequest, type GetWalletRequest, type GetWorkflowsRequest, GraphQLQueryNode, type GraphQLQueryNodeData, type GraphQLQueryNodeProps, type ListSecretResponse, Node, NodeFactory, type NodeProps, type RequestOptions, RestAPINode, type RestAPINodeData, type RestAPINodeProps, type SecretRequestOptions, type SmartWallet, Step, type StepProps, Trigger, TriggerFactory,
|
|
2389
|
+
export { AUTH_KEY_HEADER, BlockTrigger, type BlockTriggerDataType, type BlockTriggerProps, BranchNode, type BranchNodeData, type BranchNodeProps, Client, type ClientOption, ContractReadNode, type ContractReadNodeData, type ContractReadNodeProps, ContractWriteNode, type ContractWriteNodeData, type ContractWriteNodeProps, CronTrigger, type CronTriggerDataType, type CronTriggerProps, CustomCodeLangs, CustomCodeNode, type CustomCodeNodeData, type CustomCodeNodeProps, DEFAULT_LIMIT, ETHTransferNode, type ETHTransferNodeData, type ETHTransferNodeProps, Edge, type EdgeProps, type Environment, EventTrigger, type EventTriggerDataType, type EventTriggerProps, Execution, type ExecutionProps, ExecutionStatus, FilterNode, type FilterNodeData, type FilterNodeProps, FixedTimeTrigger, type FixedTimeTriggerDataType, type FixedTimeTriggerProps, type GetExecutionsRequest, type GetWalletRequest, type GetWorkflowsRequest, GraphQLQueryNode, type GraphQLQueryNodeData, type GraphQLQueryNodeProps, type ListSecretResponse, Node, NodeFactory, type NodeProps, type OutputDataProps, type RequestOptions, RestAPINode, type RestAPINodeData, type RestAPINodeProps, Secret, type SecretProps, type SecretRequestOptions, type SmartWallet, Step, type StepProps, Trigger, TriggerFactory, type TriggerProps, TriggerReason, type TriggerReasonProps, TriggerType, Workflow, type WorkflowProps, WorkflowStatus };
|