@chainpatrol/sdk 0.9.0 → 0.11.0
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/CHANGELOG.md +20 -0
- package/dist/api/index.d.mts +20 -1
- package/dist/api/index.d.ts +20 -1
- package/dist/api/index.js.map +1 -1
- package/dist/api/index.mjs.map +1 -1
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7850,6 +7850,13 @@ var brandItemSchema = z.object({
|
|
|
7850
7850
|
"Brand type: `ORGANIZATION` for parent / product brands, `INDIVIDUAL` for employee or person brands"
|
|
7851
7851
|
),
|
|
7852
7852
|
description: z.string().nullable().describe("Free-form description, if set"),
|
|
7853
|
+
avatarUrl: z.string().nullable().describe("URL of the brand's avatar / logo image"),
|
|
7854
|
+
websiteUrl: z.string().nullable().describe("Official brand website URL"),
|
|
7855
|
+
twitterHandle: z.string().nullable().describe("Official Twitter / X handle (without @)"),
|
|
7856
|
+
brandColors: z.array(z.string()).describe("HEX color strings associated with the brand (e.g. `#FF0000`)"),
|
|
7857
|
+
includedTerms: z.array(z.string()).describe("Terms that should be included when matching this brand"),
|
|
7858
|
+
excludedTerms: z.array(z.string()).describe("Terms that should be excluded when matching this brand"),
|
|
7859
|
+
tickers: z.array(z.string()).describe("Ticker symbols associated with the brand (e.g. `$JUP`)"),
|
|
7853
7860
|
brandGroupId: z.number().nullable().describe("Group this brand belongs to (only set for `INDIVIDUAL` brands)"),
|
|
7854
7861
|
createdAt: z.date().describe("When the brand was created")
|
|
7855
7862
|
});
|
|
@@ -7922,6 +7929,17 @@ var PendingServiceApprovalSchema = z.object({
|
|
|
7922
7929
|
// When the enable request was submitted (ISO 8601, UTC).
|
|
7923
7930
|
requestedAt: z.string()
|
|
7924
7931
|
});
|
|
7932
|
+
var UserOrgIntegrationsSchema = z.object({
|
|
7933
|
+
slack: z.boolean(),
|
|
7934
|
+
discord: z.boolean(),
|
|
7935
|
+
telegram: z.object({
|
|
7936
|
+
connected: z.boolean(),
|
|
7937
|
+
groupCount: z.number()
|
|
7938
|
+
}),
|
|
7939
|
+
vercel: z.boolean(),
|
|
7940
|
+
intercom: z.boolean(),
|
|
7941
|
+
moderation: z.boolean()
|
|
7942
|
+
});
|
|
7925
7943
|
var UserOrgSchema = z.object({
|
|
7926
7944
|
id: z.number(),
|
|
7927
7945
|
name: z.string(),
|
|
@@ -7937,6 +7955,7 @@ var UserOrgSchema = z.object({
|
|
|
7937
7955
|
detection: singleServiceSchema,
|
|
7938
7956
|
darkWebMonitoring: singleServiceSchema
|
|
7939
7957
|
}),
|
|
7958
|
+
integrations: UserOrgIntegrationsSchema,
|
|
7940
7959
|
obligatoryAdminApproval: UserOrgObligatoryAdminApprovalSchema,
|
|
7941
7960
|
pendingServiceApprovals: z.array(PendingServiceApprovalSchema)
|
|
7942
7961
|
});
|