@aptly-as/types 3.9.1 → 3.9.2

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/app.d.ts CHANGED
@@ -3,7 +3,7 @@ import { AptlyWebhookType } from '../enums/index.js';
3
3
  import { AptlyAppSandbox, AptlyField, AptlyScopes } from '../core/index.js';
4
4
  import { AptlyMediaSrcSchema } from './media.js';
5
5
  export type AptlyApp = AptlyAppSchema<string, string>;
6
- export interface AptlyAppSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID, DATE>, 'archived'> {
6
+ export interface AptlyAppSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
7
7
  slug: string;
8
8
  description: string;
9
9
  installUrl: string;
@@ -0,0 +1,7 @@
1
+ import { AptlyBaseSchema } from './extends';
2
+ export interface AptlyContactSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
3
+ email: string;
4
+ firstName: string;
5
+ lastName: string;
6
+ phone: string;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "3.9.1",
3
+ "version": "3.9.2",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",