@inklok/api-spec 7.11.2 → 7.11.4
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/openapi.yaml +14 -4
- 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.
|
|
11
|
+
version: "7.11.4"
|
|
12
12
|
contact:
|
|
13
13
|
name: Inklok API Support
|
|
14
14
|
email: support@inklok.com
|
|
@@ -5437,11 +5437,11 @@ components:
|
|
|
5437
5437
|
oldPlan:
|
|
5438
5438
|
nullable: true
|
|
5439
5439
|
allOf:
|
|
5440
|
-
- $ref: '#/components/schemas/
|
|
5440
|
+
- $ref: '#/components/schemas/PlatformPlan'
|
|
5441
5441
|
newPlan:
|
|
5442
5442
|
nullable: true
|
|
5443
5443
|
allOf:
|
|
5444
|
-
- $ref: '#/components/schemas/
|
|
5444
|
+
- $ref: '#/components/schemas/PlatformPlan'
|
|
5445
5445
|
oldSubscriptionStatus:
|
|
5446
5446
|
type: string
|
|
5447
5447
|
nullable: true
|
|
@@ -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
|