@liaisongroup/assist-api-js-client 1.5.169 → 1.5.170
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 +0 -34
- package/dist/openapi.json +47 -79
- package/dist/openapi.zod.d.ts +0 -5351
- package/dist/openapi.zod.js +0 -12
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -469,11 +469,6 @@ 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;
|
|
477
472
|
/**
|
|
478
473
|
* Only present on composite fields.
|
|
479
474
|
* The keys of the fields that make up this composite field.
|
|
@@ -580,11 +575,6 @@ declare namespace Components {
|
|
|
580
575
|
*
|
|
581
576
|
*/
|
|
582
577
|
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;
|
|
588
578
|
/**
|
|
589
579
|
* Only present on composite fields.
|
|
590
580
|
* The keys of the fields that make up this composite field.
|
|
@@ -924,7 +914,6 @@ declare namespace Components {
|
|
|
924
914
|
* The interpolated values are looked up in the case or task values and the values are used to replace the keys.
|
|
925
915
|
* If the interpolated value is not found in the case or task values then it is left blank.
|
|
926
916
|
* 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.
|
|
928
917
|
*
|
|
929
918
|
*/
|
|
930
919
|
interpolated_name?: string;
|
|
@@ -1629,29 +1618,6 @@ declare namespace Components {
|
|
|
1629
1618
|
*
|
|
1630
1619
|
*/
|
|
1631
1620
|
DisplayCurrencySubunit;
|
|
1632
|
-
/**
|
|
1633
|
-
* The amount of time passed since the date broken down into years, months, weeks and days.
|
|
1634
|
-
* When the date is in the future, the values will be negative.
|
|
1635
|
-
* This will not be returned unless display_time_passed_since_date is true.
|
|
1636
|
-
* If display_time_passed_since_date is true but the date is nil then it will not be returned.
|
|
1637
|
-
*
|
|
1638
|
-
*/
|
|
1639
|
-
time_passed_since_date?: {
|
|
1640
|
-
years?: number;
|
|
1641
|
-
months?: number;
|
|
1642
|
-
weeks?: number;
|
|
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;
|
|
1654
|
-
};
|
|
1655
1621
|
}[];
|
|
1656
1622
|
export interface Tag {
|
|
1657
1623
|
data: TagData;
|
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.379-hotfix/1",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -9600,6 +9600,51 @@
|
|
|
9600
9600
|
]
|
|
9601
9601
|
}
|
|
9602
9602
|
},
|
|
9603
|
+
"CaseAttributes": {
|
|
9604
|
+
"type": "object",
|
|
9605
|
+
"additionalProperties": false,
|
|
9606
|
+
"properties": {
|
|
9607
|
+
"template_id": {
|
|
9608
|
+
"type": "string",
|
|
9609
|
+
"format": "uuid"
|
|
9610
|
+
},
|
|
9611
|
+
"name": {
|
|
9612
|
+
"anyOf": [
|
|
9613
|
+
{
|
|
9614
|
+
"type": "null"
|
|
9615
|
+
},
|
|
9616
|
+
{
|
|
9617
|
+
"type": "string"
|
|
9618
|
+
}
|
|
9619
|
+
],
|
|
9620
|
+
"readOnly": true
|
|
9621
|
+
},
|
|
9622
|
+
"tag_ids": {
|
|
9623
|
+
"type": "array",
|
|
9624
|
+
"items": {
|
|
9625
|
+
"type": "string",
|
|
9626
|
+
"format": "uuid"
|
|
9627
|
+
}
|
|
9628
|
+
},
|
|
9629
|
+
"values": {
|
|
9630
|
+
"type": "object",
|
|
9631
|
+
"description": "A key-value pair of values.\nThe keys are the field keys and the values are the value for this instance.\nThe values can be strings, integers, floats, booleans, dates, times, datetimes, or resources.\nIf the field expects multiple values then it can be an array of the these.\nIf the field is composite then it is itself and object with the same structure.\n"
|
|
9632
|
+
},
|
|
9633
|
+
"structured_values": {
|
|
9634
|
+
"$ref": "#/components/schemas/StructuredValues"
|
|
9635
|
+
},
|
|
9636
|
+
"created_at": {
|
|
9637
|
+
"type": "string",
|
|
9638
|
+
"format": "date-time",
|
|
9639
|
+
"readOnly": true
|
|
9640
|
+
},
|
|
9641
|
+
"updated_at": {
|
|
9642
|
+
"type": "string",
|
|
9643
|
+
"format": "date-time",
|
|
9644
|
+
"readOnly": true
|
|
9645
|
+
}
|
|
9646
|
+
}
|
|
9647
|
+
},
|
|
9603
9648
|
"AuthApplicationAttributes": {
|
|
9604
9649
|
"type": "object",
|
|
9605
9650
|
"properties": {
|
|
@@ -9673,51 +9718,6 @@
|
|
|
9673
9718
|
}
|
|
9674
9719
|
}
|
|
9675
9720
|
},
|
|
9676
|
-
"CaseAttributes": {
|
|
9677
|
-
"type": "object",
|
|
9678
|
-
"additionalProperties": false,
|
|
9679
|
-
"properties": {
|
|
9680
|
-
"template_id": {
|
|
9681
|
-
"type": "string",
|
|
9682
|
-
"format": "uuid"
|
|
9683
|
-
},
|
|
9684
|
-
"name": {
|
|
9685
|
-
"anyOf": [
|
|
9686
|
-
{
|
|
9687
|
-
"type": "null"
|
|
9688
|
-
},
|
|
9689
|
-
{
|
|
9690
|
-
"type": "string"
|
|
9691
|
-
}
|
|
9692
|
-
],
|
|
9693
|
-
"readOnly": true
|
|
9694
|
-
},
|
|
9695
|
-
"tag_ids": {
|
|
9696
|
-
"type": "array",
|
|
9697
|
-
"items": {
|
|
9698
|
-
"type": "string",
|
|
9699
|
-
"format": "uuid"
|
|
9700
|
-
}
|
|
9701
|
-
},
|
|
9702
|
-
"values": {
|
|
9703
|
-
"type": "object",
|
|
9704
|
-
"description": "A key-value pair of values.\nThe keys are the field keys and the values are the value for this instance.\nThe values can be strings, integers, floats, booleans, dates, times, datetimes, or resources.\nIf the field expects multiple values then it can be an array of the these.\nIf the field is composite then it is itself and object with the same structure.\n"
|
|
9705
|
-
},
|
|
9706
|
-
"structured_values": {
|
|
9707
|
-
"$ref": "#/components/schemas/StructuredValues"
|
|
9708
|
-
},
|
|
9709
|
-
"created_at": {
|
|
9710
|
-
"type": "string",
|
|
9711
|
-
"format": "date-time",
|
|
9712
|
-
"readOnly": true
|
|
9713
|
-
},
|
|
9714
|
-
"updated_at": {
|
|
9715
|
-
"type": "string",
|
|
9716
|
-
"format": "date-time",
|
|
9717
|
-
"readOnly": true
|
|
9718
|
-
}
|
|
9719
|
-
}
|
|
9720
|
-
},
|
|
9721
9721
|
"CaseCreateAttributes": {
|
|
9722
9722
|
"type": "object",
|
|
9723
9723
|
"required": [
|
|
@@ -10469,11 +10469,6 @@
|
|
|
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
|
-
},
|
|
10477
10472
|
"field_keys": {
|
|
10478
10473
|
"type": "array",
|
|
10479
10474
|
"items": {
|
|
@@ -15525,33 +15520,6 @@
|
|
|
15525
15520
|
},
|
|
15526
15521
|
"display_currency_subunit": {
|
|
15527
15522
|
"$ref": "#/components/schemas/DisplayCurrencySubunit"
|
|
15528
|
-
},
|
|
15529
|
-
"time_passed_since_date": {
|
|
15530
|
-
"description": "The amount of time passed since the date broken down into years, months, weeks and days.\nWhen the date is in the future, the values will be negative.\nThis will not be returned unless display_time_passed_since_date is true.\nIf display_time_passed_since_date is true but the date is nil then it will not be returned.\n",
|
|
15531
|
-
"readOnly": true,
|
|
15532
|
-
"type": "object",
|
|
15533
|
-
"properties": {
|
|
15534
|
-
"years": {
|
|
15535
|
-
"type": "integer"
|
|
15536
|
-
},
|
|
15537
|
-
"months": {
|
|
15538
|
-
"type": "integer"
|
|
15539
|
-
},
|
|
15540
|
-
"weeks": {
|
|
15541
|
-
"type": "integer"
|
|
15542
|
-
},
|
|
15543
|
-
"days": {
|
|
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"
|
|
15553
|
-
}
|
|
15554
|
-
}
|
|
15555
15523
|
}
|
|
15556
15524
|
}
|
|
15557
15525
|
}
|
|
@@ -16160,7 +16128,7 @@
|
|
|
16160
16128
|
"properties": {
|
|
16161
16129
|
"interpolated_name": {
|
|
16162
16130
|
"type": "string",
|
|
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.\
|
|
16131
|
+
"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"
|
|
16164
16132
|
}
|
|
16165
16133
|
}
|
|
16166
16134
|
},
|