@aptly-as/types 2.5.11 → 2.5.12

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/models/order.d.ts CHANGED
@@ -48,7 +48,7 @@ export interface AptlyOrderSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID, DAT
48
48
  }
49
49
  export type AptlyOrderPaymentSession = AptlyOrderPaymentSessionSchema<string, string>;
50
50
  export interface AptlyOrderPaymentSessionSchema<ID, DATE> {
51
- app?: ID;
51
+ app?: ID | AptlyAppSchema<ID, DATE>;
52
52
  status?: AptlyOrderPaymentStatus;
53
53
  url?: string;
54
54
  id?: string;
@@ -79,6 +79,7 @@ export interface AptlyOrderPricePipelineItemSchema<ID> {
79
79
  export type AptlyOrderSignage = AptlyOrderSignageSchema<string, string>;
80
80
  export interface AptlyOrderSignageSchema<ID, DATE> {
81
81
  signed: boolean;
82
+ app?: ID | AptlyAppSchema<ID, DATE>;
82
83
  createdAt?: DATE | null;
83
84
  expiresAt?: DATE | null;
84
85
  signedAt?: DATE | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "2.5.11",
3
+ "version": "2.5.12",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",