@liaisongroup/assist-api-js-client 1.5.160 → 1.5.162
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 +13 -0
- package/dist/openapi.json +65 -46
- package/dist/openapi.zod.d.ts +3812 -0
- package/dist/openapi.zod.js +8 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1628,6 +1628,19 @@ declare namespace Components {
|
|
|
1628
1628
|
*
|
|
1629
1629
|
*/
|
|
1630
1630
|
DisplayCurrencySubunit;
|
|
1631
|
+
/**
|
|
1632
|
+
* The amount of time passed since the date broken down into years, months, weeks and days.
|
|
1633
|
+
* When the date is in the future, the values will be negative.
|
|
1634
|
+
* This will not be returned unless display_time_passed_since_date is true.
|
|
1635
|
+
* If display_time_passed_since_date is true but the date is nil then it will not be returned.
|
|
1636
|
+
*
|
|
1637
|
+
*/
|
|
1638
|
+
time_passed_since_date?: {
|
|
1639
|
+
years?: number;
|
|
1640
|
+
months?: number;
|
|
1641
|
+
weeks?: number;
|
|
1642
|
+
days?: number;
|
|
1643
|
+
};
|
|
1631
1644
|
}[];
|
|
1632
1645
|
export interface Tag {
|
|
1633
1646
|
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.382",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -9600,51 +9600,6 @@
|
|
|
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
|
-
},
|
|
9648
9603
|
"AuthApplicationAttributes": {
|
|
9649
9604
|
"type": "object",
|
|
9650
9605
|
"properties": {
|
|
@@ -9718,6 +9673,51 @@
|
|
|
9718
9673
|
}
|
|
9719
9674
|
}
|
|
9720
9675
|
},
|
|
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": [
|
|
@@ -15525,6 +15525,25 @@
|
|
|
15525
15525
|
},
|
|
15526
15526
|
"display_currency_subunit": {
|
|
15527
15527
|
"$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
|
+
}
|
|
15528
15547
|
}
|
|
15529
15548
|
}
|
|
15530
15549
|
}
|