@@ -1146,6 +1146,40 @@ paths:
11461146 tags: *ref_3
11471147 security:
11481148 - bearer: []
1149+ /contracts/{contractId}/transactions:
1150+ get:
1151+ operationId: ContractsApi_getSchemaTransactions
1152+ summary: Return all transactions for contract.
1153+ description: Return all transactions for contract.
1154+ parameters:
1155+ - name: contractId
1156+ required: true
1157+ in: path
1158+ description: Contract identifier
1159+ schema:
1160+ type: string
1161+ responses:
1162+ '200':
1163+ description: Successful operation.
1164+ content:
1165+ application/json:
1166+ schema:
1167+ type: array
1168+ items:
1169+ $ref: '#/components/schemas/TransactionDTO'
1170+ '401':
1171+ description: Unauthorized.
1172+ '403':
1173+ description: Forbidden.
1174+ '500':
1175+ description: Internal server error.
1176+ content:
1177+ application/json:
1178+ schema:
1179+ $ref: '#/components/schemas/InternalServerErrorDTO'
1180+ tags: *ref_3
1181+ security:
1182+ - bearer: []
11491183 /contracts/{contractId}/permissions:
11501184 get:
11511185 operationId: ContractsApi_contractPermissions
@@ -4804,6 +4838,40 @@ paths:
48044838 tags: *ref_11
48054839 security:
48064840 - bearer: []
4841+ /policies/{policyId}/transactions:
4842+ get:
4843+ operationId: PolicyApi_getSchemaTransactions
4844+ summary: Return all transactions for policy.
4845+ description: Return all transactions for policy.
4846+ parameters:
4847+ - name: policyId
4848+ required: true
4849+ in: path
4850+ description: Policy identifier
4851+ schema:
4852+ type: string
4853+ responses:
4854+ '200':
4855+ description: Successful operation.
4856+ content:
4857+ application/json:
4858+ schema:
4859+ type: array
4860+ items:
4861+ $ref: '#/components/schemas/TransactionDTO'
4862+ '401':
4863+ description: Unauthorized.
4864+ '403':
4865+ description: Forbidden.
4866+ '500':
4867+ description: Internal server error.
4868+ content:
4869+ application/json:
4870+ schema:
4871+ $ref: '#/components/schemas/InternalServerErrorDTO'
4872+ tags: *ref_11
4873+ security:
4874+ - bearer: []
48074875 /policies/{policyId}:
48084876 get:
48094877 operationId: PolicyApi_getPolicy
@@ -7382,6 +7450,40 @@ paths:
73827450 - schema
73837451 security:
73847452 - bearer: []
7453+ /schema/{schemaId}/transactions:
7454+ get:
7455+ operationId: SingleSchemaApi_getSchemaTransactions
7456+ summary: Return all transactions for schema.
7457+ description: Return all transactions for schema.
7458+ parameters:
7459+ - name: schemaId
7460+ required: true
7461+ in: path
7462+ description: Schema identifier
7463+ schema:
7464+ type: string
7465+ responses:
7466+ '200':
7467+ description: Successful operation.
7468+ content:
7469+ application/json:
7470+ schema:
7471+ type: array
7472+ items:
7473+ $ref: '#/components/schemas/TransactionDTO'
7474+ '401':
7475+ description: Unauthorized.
7476+ '403':
7477+ description: Forbidden.
7478+ '500':
7479+ description: Internal server error.
7480+ content:
7481+ application/json:
7482+ schema:
7483+ $ref: '#/components/schemas/InternalServerErrorDTO'
7484+ tags: *ref_12
7485+ security:
7486+ - bearer: []
73857487 /schema/{schemaId}/parents:
73867488 get:
73877489 operationId: SingleSchemaApi_getSchemaParents
@@ -9596,6 +9698,40 @@ paths:
95969698 tags: *ref_16
95979699 security:
95989700 - bearer: []
9701+ /tokens/{tokenId}/transactions:
9702+ get:
9703+ operationId: TokensApi_getSchemaTransactions
9704+ summary: Return all transactions for policy.
9705+ description: Return all transactions for policy.
9706+ parameters:
9707+ - name: tokenId
9708+ required: true
9709+ in: path
9710+ description: Policy identifier
9711+ schema:
9712+ type: string
9713+ responses:
9714+ '200':
9715+ description: Successful operation.
9716+ content:
9717+ application/json:
9718+ schema:
9719+ type: array
9720+ items:
9721+ $ref: '#/components/schemas/TransactionDTO'
9722+ '401':
9723+ description: Unauthorized.
9724+ '403':
9725+ description: Forbidden.
9726+ '500':
9727+ description: Internal server error.
9728+ content:
9729+ application/json:
9730+ schema:
9731+ $ref: '#/components/schemas/InternalServerErrorDTO'
9732+ tags: *ref_16
9733+ security:
9734+ - bearer: []
95999735 /tokens/push:
96009736 post:
96019737 operationId: TokensApi_pushTokenAsync
@@ -15564,6 +15700,13 @@ components:
1556415700 required:
1556515701 - type
1556615702 - description
15703+ TransactionDTO:
15704+ type: object
15705+ properties:
15706+ type:
15707+ type: string
15708+ required:
15709+ - type
1556715710 WiperRequestDTO:
1556815711 type: object
1556915712 properties:
0 commit comments