Skip to content

Commit

Permalink
Merge branch 'bc-add-metadata' into integration
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Jun 16, 2023
2 parents d1cb787 + 1d1aceb commit 343e3c6
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 8 deletions.
8 changes: 8 additions & 0 deletions openapi/resource-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,11 @@ paths:
description:
type: string
description: Human readable description of the incoming payment that will be visible to the account holder.
deprecated: true
externalRef:
type: string
description: A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional)
deprecated: true
metadata:
type: object
additionalProperties: true
Expand Down Expand Up @@ -408,9 +410,11 @@ paths:
description:
type: string
description: Human readable description of the outgoing payment that will be visible to the account holder and shared with the receiver.
deprecated: true
externalRef:
type: string
description: A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional)
deprecated: true
metadata:
type: object
additionalProperties: true
Expand Down Expand Up @@ -1036,9 +1040,11 @@ components:
description:
type: string
description: Human readable description of the incoming payment that will be visible to the account holder.
deprecated: true
externalRef:
type: string
description: A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number.
deprecated: true
metadata:
type: object
additionalProperties: true
Expand Down Expand Up @@ -1210,9 +1216,11 @@ components:
description:
type: string
description: Human readable description of the outgoing payment that will be visible to the account holder and shared with the receiver.
deprecated: true
externalRef:
type: string
description: A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional)
deprecated: true
metadata:
type: object
additionalProperties: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,15 @@ export interface components {
* @description The date and time when payments under this incoming payment will no longer be accepted.
*/
expiresAt?: string;
/** @description Human readable description of the incoming payment that will be visible to the account holder. */
/**
* @deprecated
* @description Human readable description of the incoming payment that will be visible to the account holder.
*/
description?: string;
/** @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. */
/**
* @deprecated
* @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number.
*/
externalRef?: string;
/** @description Additional metadata associated with the incoming payment. (Optional) */
metadata?: { [key: string]: unknown };
Expand Down Expand Up @@ -253,9 +259,15 @@ export interface components {
sendAmount: external["schemas.yaml"]["components"]["schemas"]["amount"];
/** @description The total amount that has been sent under this outgoing payment. */
sentAmount: external["schemas.yaml"]["components"]["schemas"]["amount"];
/** @description Human readable description of the outgoing payment that will be visible to the account holder and shared with the receiver. */
/**
* @deprecated
* @description Human readable description of the outgoing payment that will be visible to the account holder and shared with the receiver.
*/
description?: string;
/** @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional) */
/**
* @deprecated
* @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional)
*/
externalRef?: string;
/** @description Additional metadata associated with the outgoing payment. (Optional) */
metadata?: { [key: string]: unknown };
Expand Down Expand Up @@ -482,9 +494,15 @@ export interface operations {
* @description The date and time when payments into the incoming payment must no longer be accepted.
*/
expiresAt?: string;
/** @description Human readable description of the incoming payment that will be visible to the account holder. */
/**
* @deprecated
* @description Human readable description of the incoming payment that will be visible to the account holder.
*/
description?: string;
/** @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional) */
/**
* @deprecated
* @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional)
*/
externalRef?: string;
/** @description Additional metadata associated with the incoming payment. (Optional) */
metadata?: { [key: string]: unknown };
Expand Down Expand Up @@ -561,9 +579,15 @@ export interface operations {
* @description The URL of the quote defining this payment's amounts.
*/
quoteId: string;
/** @description Human readable description of the outgoing payment that will be visible to the account holder and shared with the receiver. */
/**
* @deprecated
* @description Human readable description of the outgoing payment that will be visible to the account holder and shared with the receiver.
*/
description?: string;
/** @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional) */
/**
* @deprecated
* @description A reference that can be used by external systems to reconcile this payment with their systems. E.g. An invoice number. (Optional)
*/
externalRef?: string;
/** @description Additional metadata associated with the outgoing payment. (Optional) */
metadata?: { [key: string]: unknown };
Expand Down

0 comments on commit 343e3c6

Please sign in to comment.