@elyx-code/project-logic-tree 0.0.7110 → 0.0.7111
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.cjs +1 -1
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -73504,7 +73504,7 @@ const Cm = Array.from(
|
|
|
73504
73504
|
editable: !1,
|
|
73505
73505
|
type: d.ActionDescriptor,
|
|
73506
73506
|
index: null,
|
|
73507
|
-
name: "Upload
|
|
73507
|
+
name: "Upload Google Drive document",
|
|
73508
73508
|
codeName: null,
|
|
73509
73509
|
description: "Upload a file to Google Drive via simple upload; optionally set name, description, and move to folder.",
|
|
73510
73510
|
error: null,
|
|
@@ -91942,15 +91942,15 @@ function obi(s) {
|
|
|
91942
91942
|
case te.Join:
|
|
91943
91943
|
return "Join texts";
|
|
91944
91944
|
case te.ReplaceAllMatches:
|
|
91945
|
-
return "Replace all matches";
|
|
91945
|
+
return "Replace all matches in text";
|
|
91946
91946
|
case te.ReplaceFirstNChars:
|
|
91947
|
-
return "Replace first
|
|
91947
|
+
return "Replace first N characters";
|
|
91948
91948
|
case te.ReplaceLastNChars:
|
|
91949
|
-
return "Replace last
|
|
91949
|
+
return "Replace last N characters";
|
|
91950
91950
|
case te.SplitAtIndex:
|
|
91951
91951
|
return "Split text";
|
|
91952
91952
|
case te.ReplaceAtIndex:
|
|
91953
|
-
return "Replace at index position";
|
|
91953
|
+
return "Replace text at index position";
|
|
91954
91954
|
case te.ReplaceFirstMatch:
|
|
91955
91955
|
return "Replace single match";
|
|
91956
91956
|
case te.GetFirstNChars:
|
|
@@ -92068,13 +92068,13 @@ function obi(s) {
|
|
|
92068
92068
|
case ce.Join:
|
|
92069
92069
|
return "Join lists";
|
|
92070
92070
|
case ce.ReplaceFirstNItems:
|
|
92071
|
-
return "Replace first
|
|
92071
|
+
return "Replace first N items";
|
|
92072
92072
|
case ce.ReplaceLastNItems:
|
|
92073
|
-
return "Replace last
|
|
92073
|
+
return "Replace last N items";
|
|
92074
92074
|
case ce.Split:
|
|
92075
92075
|
return "Split list";
|
|
92076
92076
|
case ce.ReplaceAtIndex:
|
|
92077
|
-
return "Replace at index position";
|
|
92077
|
+
return "Replace item at index position";
|
|
92078
92078
|
case ce.GetFirst:
|
|
92079
92079
|
return "Get first item";
|
|
92080
92080
|
case ce.GetLast:
|
|
@@ -92124,7 +92124,7 @@ function obi(s) {
|
|
|
92124
92124
|
case ce.Repeat:
|
|
92125
92125
|
return "Create a list by repeating an item";
|
|
92126
92126
|
case ce.ReplaceAll:
|
|
92127
|
-
return "Replace all matches";
|
|
92127
|
+
return "Replace all matches in list";
|
|
92128
92128
|
case q.AddBusinessDays:
|
|
92129
92129
|
return "Add business days to date";
|
|
92130
92130
|
case q.AddToDate:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7111",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|