@liaisongroup/assist-api-js-client 1.5.195 → 1.5.196

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
@@ -2139,6 +2139,7 @@ declare namespace Components {
2139
2139
  label?: string;
2140
2140
  value?: TemplateSchemaItem;
2141
2141
  }[];
2142
+ default_tag_ids?: string /* uuid */[];
2142
2143
  created_at?: string; // date-time
2143
2144
  updated_at?: string; // date-time
2144
2145
  }
@@ -2178,6 +2179,7 @@ declare namespace Components {
2178
2179
  field_settings?: FieldSettingsRelationship;
2179
2180
  cases?: CasesRelationship;
2180
2181
  tasks?: TasksRelationship;
2182
+ default_tags?: TagsRelationship;
2181
2183
  };
2182
2184
  }
2183
2185
  namespace TemplateData {
@@ -2187,6 +2189,7 @@ declare namespace Components {
2187
2189
  field_settings?: FieldSettingsRelationship;
2188
2190
  cases?: CasesRelationship;
2189
2191
  tasks?: TasksRelationship;
2192
+ default_tags?: TagsRelationship;
2190
2193
  }
2191
2194
  }
2192
2195
  }
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.430",
6
+ "version": "0.0.431",
7
7
  "license": {
8
8
  "name": "MIT",
9
9
  "url": "https://opensource.org/licenses/MIT"
@@ -14520,6 +14520,13 @@
14520
14520
  }
14521
14521
  }
14522
14522
  },
14523
+ "default_tag_ids": {
14524
+ "type": "array",
14525
+ "items": {
14526
+ "type": "string",
14527
+ "format": "uuid"
14528
+ }
14529
+ },
14523
14530
  "created_at": {
14524
14531
  "type": "string",
14525
14532
  "format": "date-time",
@@ -14594,6 +14601,9 @@
14594
14601
  },
14595
14602
  "tasks": {
14596
14603
  "$ref": "#/components/schemas/TasksRelationship"
14604
+ },
14605
+ "default_tags": {
14606
+ "$ref": "#/components/schemas/TagsRelationship"
14597
14607
  }
14598
14608
  }
14599
14609
  }