@redotech/redo-api-schema 2.2.172 → 2.2.174
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/lib/openapi.d.ts +5 -0
- package/lib/openapi.yaml +4 -0
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -661,6 +661,11 @@ export interface components {
|
|
|
661
661
|
* @description Return identifier.
|
|
662
662
|
*/
|
|
663
663
|
id: string;
|
|
664
|
+
/**
|
|
665
|
+
* Internal Created By Name
|
|
666
|
+
* @description Name of the internal team member who created this return
|
|
667
|
+
*/
|
|
668
|
+
internalCreatedByName?: string;
|
|
664
669
|
/** @description Return items */
|
|
665
670
|
items: {
|
|
666
671
|
/** @description Customer's comment about the return */
|
package/lib/openapi.yaml
CHANGED
|
@@ -657,6 +657,10 @@ components:
|
|
|
657
657
|
- 64df65d4c5a4ca3eff4b4e43
|
|
658
658
|
title: Identifier
|
|
659
659
|
type: string
|
|
660
|
+
internalCreatedByName:
|
|
661
|
+
description: Name of the internal team member who created this return
|
|
662
|
+
title: Internal Created By Name
|
|
663
|
+
type: string
|
|
660
664
|
items:
|
|
661
665
|
description: Return items
|
|
662
666
|
items:
|
package/package.json
CHANGED