@elyx-code/project-logic-tree 0.0.6518 → 0.0.6519
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 +92 -0
- package/dist/index.js +10439 -9777
- package/dist/index.umd.cjs +201 -201
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2172,6 +2172,60 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
2172
2172
|
id: string;
|
|
2173
2173
|
};
|
|
2174
2174
|
};
|
|
2175
|
+
excludeArchived: {
|
|
2176
|
+
id: string;
|
|
2177
|
+
dataType: {
|
|
2178
|
+
id: string;
|
|
2179
|
+
};
|
|
2180
|
+
};
|
|
2181
|
+
onlyJoined: {
|
|
2182
|
+
id: string;
|
|
2183
|
+
dataType: {
|
|
2184
|
+
id: string;
|
|
2185
|
+
};
|
|
2186
|
+
};
|
|
2187
|
+
teamId: {
|
|
2188
|
+
id: string;
|
|
2189
|
+
dataType: {
|
|
2190
|
+
id: string;
|
|
2191
|
+
};
|
|
2192
|
+
};
|
|
2193
|
+
joinPublicChannels: {
|
|
2194
|
+
id: string;
|
|
2195
|
+
dataType: {
|
|
2196
|
+
id: string;
|
|
2197
|
+
};
|
|
2198
|
+
};
|
|
2199
|
+
autoPaginate: {
|
|
2200
|
+
id: string;
|
|
2201
|
+
dataType: {
|
|
2202
|
+
id: string;
|
|
2203
|
+
};
|
|
2204
|
+
};
|
|
2205
|
+
types: {
|
|
2206
|
+
id: string;
|
|
2207
|
+
dataType: {
|
|
2208
|
+
id: string;
|
|
2209
|
+
};
|
|
2210
|
+
};
|
|
2211
|
+
pageSize: {
|
|
2212
|
+
id: string;
|
|
2213
|
+
dataType: {
|
|
2214
|
+
id: string;
|
|
2215
|
+
};
|
|
2216
|
+
};
|
|
2217
|
+
pageToken: {
|
|
2218
|
+
id: string;
|
|
2219
|
+
dataType: {
|
|
2220
|
+
id: string;
|
|
2221
|
+
};
|
|
2222
|
+
};
|
|
2223
|
+
nameContains: {
|
|
2224
|
+
id: string;
|
|
2225
|
+
dataType: {
|
|
2226
|
+
id: string;
|
|
2227
|
+
};
|
|
2228
|
+
};
|
|
2175
2229
|
};
|
|
2176
2230
|
outputs: {
|
|
2177
2231
|
channels: {
|
|
@@ -2910,14 +2964,42 @@ export declare enum ChangeSetEntityChangeType {
|
|
|
2910
2964
|
|
|
2911
2965
|
export declare function changeSetJSONRecordToUniqueIds(changeSet: IRecordChangeSet): Set<EntityId>;
|
|
2912
2966
|
|
|
2967
|
+
export declare const channelsIntegrationBuiltInActionDescriptorAutoPaginateInputDataTypeTransfer: IDataTypeTransfer;
|
|
2968
|
+
|
|
2969
|
+
export declare const channelsIntegrationBuiltInActionDescriptorAutoPaginateInputTransfer: IValueDescriptorTransfer;
|
|
2970
|
+
|
|
2913
2971
|
export declare const channelsIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
2914
2972
|
|
|
2915
2973
|
export declare const channelsIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
2916
2974
|
|
|
2975
|
+
export declare const channelsIntegrationBuiltInActionDescriptorExcludeArchivedInputDataTypeTransfer: IDataTypeTransfer;
|
|
2976
|
+
|
|
2977
|
+
export declare const channelsIntegrationBuiltInActionDescriptorExcludeArchivedInputTransfer: IValueDescriptorTransfer;
|
|
2978
|
+
|
|
2979
|
+
export declare const channelsIntegrationBuiltInActionDescriptorJoinPublicChannelsInputDataTypeTransfer: IDataTypeTransfer;
|
|
2980
|
+
|
|
2981
|
+
export declare const channelsIntegrationBuiltInActionDescriptorJoinPublicChannelsInputTransfer: IValueDescriptorTransfer;
|
|
2982
|
+
|
|
2983
|
+
export declare const channelsIntegrationBuiltInActionDescriptorNameContainsInputDataTypeTransfer: IDataTypeTransfer;
|
|
2984
|
+
|
|
2985
|
+
export declare const channelsIntegrationBuiltInActionDescriptorNameContainsInputTransfer: IValueDescriptorTransfer;
|
|
2986
|
+
|
|
2917
2987
|
export declare const channelsIntegrationBuiltInActionDescriptorNextPageTokenOutputDataTypeTransfer: IDataTypeTransfer;
|
|
2918
2988
|
|
|
2919
2989
|
export declare const channelsIntegrationBuiltInActionDescriptorNextPageTokenOutputTransfer: IValueDescriptorTransfer;
|
|
2920
2990
|
|
|
2991
|
+
export declare const channelsIntegrationBuiltInActionDescriptorOnlyJoinedInputDataTypeTransfer: IDataTypeTransfer;
|
|
2992
|
+
|
|
2993
|
+
export declare const channelsIntegrationBuiltInActionDescriptorOnlyJoinedInputTransfer: IValueDescriptorTransfer;
|
|
2994
|
+
|
|
2995
|
+
export declare const channelsIntegrationBuiltInActionDescriptorPageSizeInputDataTypeTransfer: IDataTypeTransfer;
|
|
2996
|
+
|
|
2997
|
+
export declare const channelsIntegrationBuiltInActionDescriptorPageSizeInputTransfer: IValueDescriptorTransfer;
|
|
2998
|
+
|
|
2999
|
+
export declare const channelsIntegrationBuiltInActionDescriptorPageTokenInputDataTypeTransfer: IDataTypeTransfer;
|
|
3000
|
+
|
|
3001
|
+
export declare const channelsIntegrationBuiltInActionDescriptorPageTokenInputTransfer: IValueDescriptorTransfer;
|
|
3002
|
+
|
|
2921
3003
|
export declare const channelsIntegrationBuiltInActionDescriptorRecordsOutputDataTypeEntityCreatedPropertyDataTypeTransfer: IDataTypeTransfer;
|
|
2922
3004
|
|
|
2923
3005
|
export declare const channelsIntegrationBuiltInActionDescriptorRecordsOutputDataTypeEntityCreatedPropertyTransfer: IPropertyTransfer;
|
|
@@ -2988,8 +3070,16 @@ export declare const channelsIntegrationBuiltInActionDescriptorRecordsOutputData
|
|
|
2988
3070
|
|
|
2989
3071
|
export declare const channelsIntegrationBuiltInActionDescriptorRecordsOutputTransfer: IValueDescriptorTransfer;
|
|
2990
3072
|
|
|
3073
|
+
export declare const channelsIntegrationBuiltInActionDescriptorTeamIdInputDataTypeTransfer: IDataTypeTransfer;
|
|
3074
|
+
|
|
3075
|
+
export declare const channelsIntegrationBuiltInActionDescriptorTeamIdInputTransfer: IValueDescriptorTransfer;
|
|
3076
|
+
|
|
2991
3077
|
export declare const channelsIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
2992
3078
|
|
|
3079
|
+
export declare const channelsIntegrationBuiltInActionDescriptorTypesInputDataTypeTransfer: IDataTypeTransfer;
|
|
3080
|
+
|
|
3081
|
+
export declare const channelsIntegrationBuiltInActionDescriptorTypesInputTransfer: IValueDescriptorTransfer;
|
|
3082
|
+
|
|
2993
3083
|
export declare function checkAreDataTypesCompatible(dataTypeA: DataTypeState | null, dataTypeB: DataTypeState | null): IDataTypeCompatible | IDataTypeIncompatibile;
|
|
2994
3084
|
|
|
2995
3085
|
export declare function checkAreDefinitionEntitiesCompatibleAsDataType(sourceDefinitionEntity: DefinitionEntityState, targetDefinitionEntity: DefinitionEntityState): boolean;
|
|
@@ -17993,6 +18083,8 @@ export declare abstract class SharedStateFunctionality {
|
|
|
17993
18083
|
abstract getShallowErrors(): EntityError[];
|
|
17994
18084
|
}
|
|
17995
18085
|
|
|
18086
|
+
export declare const SLACK_CONVERSATION_TYPES: string[];
|
|
18087
|
+
|
|
17996
18088
|
export declare const slackAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
17997
18089
|
|
|
17998
18090
|
export declare const slackAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|