otomato-sdk 2.0.604 → 2.0.605
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.
|
@@ -1983,6 +1983,33 @@ export declare const TRIGGERS: {
|
|
|
1983
1983
|
blockId: number;
|
|
1984
1984
|
image: string;
|
|
1985
1985
|
};
|
|
1986
|
+
ASSET_ALLOCATION_CHANGE: {
|
|
1987
|
+
name: string;
|
|
1988
|
+
dynamicName: string;
|
|
1989
|
+
description: string;
|
|
1990
|
+
prototype: string;
|
|
1991
|
+
type: number;
|
|
1992
|
+
method: string;
|
|
1993
|
+
parameters: Parameter[];
|
|
1994
|
+
examples: {
|
|
1995
|
+
name: string;
|
|
1996
|
+
description: string;
|
|
1997
|
+
parameters: ({
|
|
1998
|
+
key: string;
|
|
1999
|
+
value: number;
|
|
2000
|
+
} | {
|
|
2001
|
+
key: string;
|
|
2002
|
+
value: string;
|
|
2003
|
+
})[];
|
|
2004
|
+
}[];
|
|
2005
|
+
output: {
|
|
2006
|
+
newAssets: string;
|
|
2007
|
+
vaultName: string;
|
|
2008
|
+
currentComposition: string;
|
|
2009
|
+
};
|
|
2010
|
+
blockId: number;
|
|
2011
|
+
image: string;
|
|
2012
|
+
};
|
|
1986
2013
|
};
|
|
1987
2014
|
ACCUMULATED_FINANCE: {
|
|
1988
2015
|
description: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.605";
|
|
2
2
|
export declare function compareVersions(v1: string, v2: string): number;
|