@liaisongroup/assist-api-js-client 1.5.162 → 1.5.164

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/openapi.d.ts CHANGED
@@ -924,6 +924,7 @@ declare namespace Components {
924
924
  * The interpolated values are looked up in the case or task values and the values are used to replace the keys.
925
925
  * If the interpolated value is not found in the case or task values then it is left blank.
926
926
  * If the interpolated values begins with "values/" then the value is looked up in the case or task values, otherwise it is looked up in the case or task itself.
927
+ * You can prefix keys with age: or first_character: to perform calculations on the value.
927
928
  *
928
929
  */
929
930
  interpolated_name?: string;
@@ -1640,6 +1641,16 @@ declare namespace Components {
1640
1641
  months?: number;
1641
1642
  weeks?: number;
1642
1643
  days?: number;
1644
+ /**
1645
+ * The long form of the time passed since the date.
1646
+ *
1647
+ */
1648
+ long?: string;
1649
+ /**
1650
+ * The short form of the time passed since the date.
1651
+ *
1652
+ */
1653
+ short?: string;
1643
1654
  };
1644
1655
  }[];
1645
1656
  export interface Tag {
package/dist/openapi.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Liaison Assist API",
5
5
  "description": "![Hero](./hero.svg)\n",
6
- "version": "0.0.382",
6
+ "version": "0.0.384",
7
7
  "license": {
8
8
  "name": "MIT",
9
9
  "url": "https://opensource.org/licenses/MIT"
@@ -15542,6 +15542,14 @@
15542
15542
  },
15543
15543
  "days": {
15544
15544
  "type": "integer"
15545
+ },
15546
+ "long": {
15547
+ "description": "The long form of the time passed since the date.\n",
15548
+ "type": "string"
15549
+ },
15550
+ "short": {
15551
+ "description": "The short form of the time passed since the date.\n",
15552
+ "type": "string"
15545
15553
  }
15546
15554
  }
15547
15555
  }
@@ -16152,7 +16160,7 @@
16152
16160
  "properties": {
16153
16161
  "interpolated_name": {
16154
16162
  "type": "string",
16155
- "description": "When a template calls for a more complex name you can use an interpolated name.\nThe interpolated name is a string which contains the keys of the fields which are used to determine the name.\nThe keys are surrounded by curly braces.\nFor example: \"{id} {values/given_name} {values/surname}\"\nThe interpolated values are looked up in the case or task values and the values are used to replace the keys.\nIf the interpolated value is not found in the case or task values then it is left blank.\nIf the interpolated values begins with \"values/\" then the value is looked up in the case or task values, otherwise it is looked up in the case or task itself.\n"
16163
+ "description": "When a template calls for a more complex name you can use an interpolated name.\nThe interpolated name is a string which contains the keys of the fields which are used to determine the name.\nThe keys are surrounded by curly braces.\nFor example: \"{id} {values/given_name} {values/surname}\"\nThe interpolated values are looked up in the case or task values and the values are used to replace the keys.\nIf the interpolated value is not found in the case or task values then it is left blank.\nIf the interpolated values begins with \"values/\" then the value is looked up in the case or task values, otherwise it is looked up in the case or task itself.\nYou can prefix keys with age: or first_character: to perform calculations on the value.\n"
16156
16164
  }
16157
16165
  }
16158
16166
  },