@liaisongroup/assist-api-js-client 1.5.159 → 1.5.161
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 +10 -0
- package/dist/openapi.json +6 -1
- package/dist/openapi.zod.d.ts +225 -0
- package/dist/openapi.zod.js +2 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -469,6 +469,11 @@ declare namespace Components {
|
|
|
469
469
|
*
|
|
470
470
|
*/
|
|
471
471
|
DisplayCurrencySubunit;
|
|
472
|
+
/**
|
|
473
|
+
* Applied when the field_type is `date` - indicates that the amount of time passed since the date should be displayed (e.g 4 years, 3 months and 18 days).
|
|
474
|
+
*
|
|
475
|
+
*/
|
|
476
|
+
display_time_passed_since_date?: boolean;
|
|
472
477
|
/**
|
|
473
478
|
* Only present on composite fields.
|
|
474
479
|
* The keys of the fields that make up this composite field.
|
|
@@ -575,6 +580,11 @@ declare namespace Components {
|
|
|
575
580
|
*
|
|
576
581
|
*/
|
|
577
582
|
DisplayCurrencySubunit;
|
|
583
|
+
/**
|
|
584
|
+
* Applied when the field_type is `date` - indicates that the amount of time passed since the date should be displayed (e.g 4 years, 3 months and 18 days).
|
|
585
|
+
*
|
|
586
|
+
*/
|
|
587
|
+
display_time_passed_since_date?: boolean;
|
|
578
588
|
/**
|
|
579
589
|
* Only present on composite fields.
|
|
580
590
|
* The keys of the fields that make up this composite field.
|
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Liaison Assist API",
|
|
5
5
|
"description": "\n",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.381",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -10469,6 +10469,11 @@
|
|
|
10469
10469
|
"display_currency_subunit": {
|
|
10470
10470
|
"$ref": "#/components/schemas/DisplayCurrencySubunit"
|
|
10471
10471
|
},
|
|
10472
|
+
"display_time_passed_since_date": {
|
|
10473
|
+
"type": "boolean",
|
|
10474
|
+
"default": false,
|
|
10475
|
+
"description": "Applied when the field_type is `date` - indicates that the amount of time passed since the date should be displayed (e.g 4 years, 3 months and 18 days).\n"
|
|
10476
|
+
},
|
|
10472
10477
|
"field_keys": {
|
|
10473
10478
|
"type": "array",
|
|
10474
10479
|
"items": {
|