agentmail 0.2.11 → 0.2.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/dist/cjs/BaseClient.js +2 -2
- package/dist/cjs/api/resources/organizations/types/Organization.d.ts +10 -0
- package/dist/cjs/serialization/resources/organizations/types/Organization.d.ts +5 -0
- package/dist/cjs/serialization/resources/organizations/types/Organization.js +5 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.mjs +2 -2
- package/dist/esm/api/resources/organizations/types/Organization.d.mts +10 -0
- package/dist/esm/serialization/resources/organizations/types/Organization.d.mts +5 -0
- package/dist/esm/serialization/resources/organizations/types/Organization.mjs +5 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/dist/llms-full.txt +1940 -484
- package/dist/llms.txt +10 -0
- package/package.json +1 -1
package/dist/cjs/BaseClient.js
CHANGED
|
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
|
|
|
43
43
|
const headers = (0, headers_js_1.mergeHeaders)({
|
|
44
44
|
"X-Fern-Language": "JavaScript",
|
|
45
45
|
"X-Fern-SDK-Name": "agentmail",
|
|
46
|
-
"X-Fern-SDK-Version": "0.2.
|
|
47
|
-
"User-Agent": "agentmail/0.2.
|
|
46
|
+
"X-Fern-SDK-Version": "0.2.12",
|
|
47
|
+
"User-Agent": "agentmail/0.2.12",
|
|
48
48
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
49
49
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
50
50
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -12,6 +12,16 @@ export interface Organization {
|
|
|
12
12
|
inboxLimit?: number;
|
|
13
13
|
/** Maximum number of domains allowed. */
|
|
14
14
|
domainLimit?: number;
|
|
15
|
+
/** Provider-agnostic billing customer ID. */
|
|
16
|
+
billingId?: string;
|
|
17
|
+
/** Billing provider type (e.g. "stripe"). */
|
|
18
|
+
billingType?: string;
|
|
19
|
+
/** Active billing subscription ID. */
|
|
20
|
+
billingSubscriptionId?: string;
|
|
21
|
+
/** Provider-agnostic authentication ID. */
|
|
22
|
+
authenticationId?: string;
|
|
23
|
+
/** Authentication provider type. */
|
|
24
|
+
authenticationType?: string;
|
|
15
25
|
/** Time at which organization was last updated. */
|
|
16
26
|
updatedAt: Date;
|
|
17
27
|
/** Time at which organization was created. */
|
|
@@ -10,6 +10,11 @@ export declare namespace Organization {
|
|
|
10
10
|
domain_count: number;
|
|
11
11
|
inbox_limit?: number | null;
|
|
12
12
|
domain_limit?: number | null;
|
|
13
|
+
billing_id?: string | null;
|
|
14
|
+
billing_type?: string | null;
|
|
15
|
+
billing_subscription_id?: string | null;
|
|
16
|
+
authentication_id?: string | null;
|
|
17
|
+
authentication_type?: string | null;
|
|
13
18
|
updated_at: string;
|
|
14
19
|
created_at: string;
|
|
15
20
|
}
|
|
@@ -43,6 +43,11 @@ exports.Organization = core.serialization.object({
|
|
|
43
43
|
domainCount: core.serialization.property("domain_count", core.serialization.number()),
|
|
44
44
|
inboxLimit: core.serialization.property("inbox_limit", core.serialization.number().optional()),
|
|
45
45
|
domainLimit: core.serialization.property("domain_limit", core.serialization.number().optional()),
|
|
46
|
+
billingId: core.serialization.property("billing_id", core.serialization.string().optional()),
|
|
47
|
+
billingType: core.serialization.property("billing_type", core.serialization.string().optional()),
|
|
48
|
+
billingSubscriptionId: core.serialization.property("billing_subscription_id", core.serialization.string().optional()),
|
|
49
|
+
authenticationId: core.serialization.property("authentication_id", core.serialization.string().optional()),
|
|
50
|
+
authenticationType: core.serialization.property("authentication_type", core.serialization.string().optional()),
|
|
46
51
|
updatedAt: core.serialization.property("updated_at", core.serialization.date()),
|
|
47
52
|
createdAt: core.serialization.property("created_at", core.serialization.date()),
|
|
48
53
|
});
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.2.
|
|
1
|
+
export declare const SDK_VERSION = "0.2.12";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/BaseClient.mjs
CHANGED
|
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
|
|
|
6
6
|
const headers = mergeHeaders({
|
|
7
7
|
"X-Fern-Language": "JavaScript",
|
|
8
8
|
"X-Fern-SDK-Name": "agentmail",
|
|
9
|
-
"X-Fern-SDK-Version": "0.2.
|
|
10
|
-
"User-Agent": "agentmail/0.2.
|
|
9
|
+
"X-Fern-SDK-Version": "0.2.12",
|
|
10
|
+
"User-Agent": "agentmail/0.2.12",
|
|
11
11
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
12
12
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
13
13
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -12,6 +12,16 @@ export interface Organization {
|
|
|
12
12
|
inboxLimit?: number;
|
|
13
13
|
/** Maximum number of domains allowed. */
|
|
14
14
|
domainLimit?: number;
|
|
15
|
+
/** Provider-agnostic billing customer ID. */
|
|
16
|
+
billingId?: string;
|
|
17
|
+
/** Billing provider type (e.g. "stripe"). */
|
|
18
|
+
billingType?: string;
|
|
19
|
+
/** Active billing subscription ID. */
|
|
20
|
+
billingSubscriptionId?: string;
|
|
21
|
+
/** Provider-agnostic authentication ID. */
|
|
22
|
+
authenticationId?: string;
|
|
23
|
+
/** Authentication provider type. */
|
|
24
|
+
authenticationType?: string;
|
|
15
25
|
/** Time at which organization was last updated. */
|
|
16
26
|
updatedAt: Date;
|
|
17
27
|
/** Time at which organization was created. */
|
|
@@ -10,6 +10,11 @@ export declare namespace Organization {
|
|
|
10
10
|
domain_count: number;
|
|
11
11
|
inbox_limit?: number | null;
|
|
12
12
|
domain_limit?: number | null;
|
|
13
|
+
billing_id?: string | null;
|
|
14
|
+
billing_type?: string | null;
|
|
15
|
+
billing_subscription_id?: string | null;
|
|
16
|
+
authentication_id?: string | null;
|
|
17
|
+
authentication_type?: string | null;
|
|
13
18
|
updated_at: string;
|
|
14
19
|
created_at: string;
|
|
15
20
|
}
|
|
@@ -7,6 +7,11 @@ export const Organization = core.serialization.object({
|
|
|
7
7
|
domainCount: core.serialization.property("domain_count", core.serialization.number()),
|
|
8
8
|
inboxLimit: core.serialization.property("inbox_limit", core.serialization.number().optional()),
|
|
9
9
|
domainLimit: core.serialization.property("domain_limit", core.serialization.number().optional()),
|
|
10
|
+
billingId: core.serialization.property("billing_id", core.serialization.string().optional()),
|
|
11
|
+
billingType: core.serialization.property("billing_type", core.serialization.string().optional()),
|
|
12
|
+
billingSubscriptionId: core.serialization.property("billing_subscription_id", core.serialization.string().optional()),
|
|
13
|
+
authenticationId: core.serialization.property("authentication_id", core.serialization.string().optional()),
|
|
14
|
+
authenticationType: core.serialization.property("authentication_type", core.serialization.string().optional()),
|
|
10
15
|
updatedAt: core.serialization.property("updated_at", core.serialization.date()),
|
|
11
16
|
createdAt: core.serialization.property("created_at", core.serialization.date()),
|
|
12
17
|
});
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.2.
|
|
1
|
+
export declare const SDK_VERSION = "0.2.12";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "0.2.
|
|
1
|
+
export const SDK_VERSION = "0.2.12";
|