@aptly-as/types 3.0.10 → 3.0.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/offer.d.ts +1 -0
- package/models/organization.d.ts +2 -1
- package/models/project.d.ts +2 -1
- package/package.json +1 -1
package/models/offer.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export interface AptlyOfferSendBody extends Omit<AptlyCustomer, 'fullName' | 'us
|
|
|
55
55
|
unit: string | null;
|
|
56
56
|
copy?: boolean;
|
|
57
57
|
address?: AptlySearchAddress | null;
|
|
58
|
+
description: string;
|
|
58
59
|
}
|
|
59
60
|
export type AptlyPublicOfferCheckout = AptlyPublicOfferCheckoutSchema<string, string>;
|
|
60
61
|
export interface AptlyPublicOfferCheckoutSchema<ID, DATE> extends AptlyExtensionAmount {
|
package/models/organization.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { AptlyOrganizationStatus, AptlyOrganizationType } from '../enums/index.j
|
|
|
4
4
|
import { AptlyAddress } from './address.js';
|
|
5
5
|
import { AptlyInviteSchema } from './invite.js';
|
|
6
6
|
import { AptlyModuleItemSchema } from './module.js';
|
|
7
|
+
import { AptlyProjectSchema } from './project.js';
|
|
7
8
|
import { AptlyUserSchema } from './user.js';
|
|
8
9
|
import { AptlyMediaSrc } from './media.js';
|
|
9
10
|
import { AptlyBaseSchema, AptlyHistorySchema } from './extends.js';
|
|
@@ -64,7 +65,7 @@ export interface AptlyOrganizationMemberSchema<ID, DATE> {
|
|
|
64
65
|
user: AptlyUserSchema<ID, DATE> | ID;
|
|
65
66
|
permissions: AptlyOrganizationRoles[];
|
|
66
67
|
position?: AptlyOrganizationMemberPosition;
|
|
67
|
-
projects?: (ID |
|
|
68
|
+
projects?: (ID | AptlyProjectSchema<ID, DATE>)[] | null;
|
|
68
69
|
departments?: (ID | AptlyDepartmentGeneric<ID, DATE>)[] | null;
|
|
69
70
|
}
|
|
70
71
|
export declare enum AptlyOrganizationMemberPosition {
|
package/models/project.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { AptlyAlgorithm, AptlyAlgorithmPipeline, AptlyAlgorithmPipelineSchema, A
|
|
|
4
4
|
import { AptlyAppSchema } from './app.js';
|
|
5
5
|
import { AptlyOrganizationSchema } from './organization.js';
|
|
6
6
|
import { AptlyModules } from '../core/index.js';
|
|
7
|
+
import { AptlyPageSchema } from './page.js';
|
|
7
8
|
import { AptlyPeriod, AptlyPeriodSchema } from './period.js';
|
|
8
9
|
import { AptlyUserSchema } from './user.js';
|
|
9
10
|
import { AptlyBaseSchema, AptlyHistorySchema } from './extends.js';
|
|
@@ -18,7 +19,7 @@ export interface AptlyProjectSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE>,
|
|
|
18
19
|
periods: AptlyPeriodSchema<ID, DATE>[];
|
|
19
20
|
algorithms: AptlyAlgorithmSchema<ID>[];
|
|
20
21
|
documents: AptlyDocumentSchema<ID, DATE>[];
|
|
21
|
-
pages: ID[];
|
|
22
|
+
pages: (ID | AptlyPageSchema<ID, DATE>)[];
|
|
22
23
|
myPageText?: string;
|
|
23
24
|
inviteText?: string;
|
|
24
25
|
notify: AptlyProjectNotifySchema<ID, DATE>[];
|