@inklok/api-spec 7.11.2 → 7.11.3

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.
Files changed (2) hide show
  1. package/openapi.yaml +12 -2
  2. package/package.json +1 -1
package/openapi.yaml CHANGED
@@ -8,7 +8,7 @@ info:
8
8
  Authenticate using an API key or bearer token, then use the resources below to manage
9
9
  templates, agreements, documents, and signing. For your first integration, start with
10
10
  the Quick Start guide.
11
- version: "7.11.2"
11
+ version: "7.11.3"
12
12
  contact:
13
13
  name: Inklok API Support
14
14
  email: support@inklok.com
@@ -6974,7 +6974,7 @@ components:
6974
6974
  WorkflowListItem:
6975
6975
  type: object
6976
6976
  description: Template summary returned when listing agreement templates.
6977
- required: [id, workflowId, documentId, name, description, status, version, createdAt, updatedAt]
6977
+ required: [id, workflowId, documentId, name, description, status, version, placeholderCount, partyCount, createdAt, updatedAt]
6978
6978
  properties:
6979
6979
  id:
6980
6980
  $ref: '#/components/schemas/Ulid'
@@ -6997,6 +6997,16 @@ components:
6997
6997
  type: integer
6998
6998
  minimum: 1
6999
6999
  readOnly: true
7000
+ placeholderCount:
7001
+ type: integer
7002
+ minimum: 0
7003
+ readOnly: true
7004
+ description: Number of fields defined on the template.
7005
+ partyCount:
7006
+ type: integer
7007
+ minimum: 0
7008
+ readOnly: true
7009
+ description: Number of participant roles defined on the template.
7000
7010
  createdAt:
7001
7011
  type: string
7002
7012
  format: date-time
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inklok/api-spec",
3
- "version": "7.11.2",
3
+ "version": "7.11.3",
4
4
  "description": "Canonical OpenAPI specification for the Inklok public API.",
5
5
  "main": "openapi.yaml",
6
6
  "license": "MIT",