@keystrokehq/missive 0.1.3 → 0.1.4
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/actions/create-contacts.d.cts +2 -2
- package/dist/actions/create-contacts.d.mts +2 -2
- package/dist/actions/list-contacts.d.cts +1 -1
- package/dist/actions/list-contacts.d.mts +1 -1
- package/dist/actions/update-contact.d.cts +2 -2
- package/dist/actions/update-contact.d.mts +2 -2
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -8,11 +8,11 @@ declare const MissiveCreateContactsInput: z.ZodObject<{
|
|
|
8
8
|
kind: z.ZodEnum<{
|
|
9
9
|
custom: "custom";
|
|
10
10
|
email: "email";
|
|
11
|
+
url: "url";
|
|
11
12
|
phone_number: "phone_number";
|
|
12
13
|
twitter: "twitter";
|
|
13
14
|
facebook: "facebook";
|
|
14
15
|
physical_address: "physical_address";
|
|
15
|
-
url: "url";
|
|
16
16
|
}>;
|
|
17
17
|
name: z.ZodOptional<z.ZodString>;
|
|
18
18
|
label: z.ZodString;
|
|
@@ -103,7 +103,7 @@ declare const missiveCreateContacts: import("@keystrokehq/action").WorkflowActio
|
|
|
103
103
|
contact_book: string;
|
|
104
104
|
infos?: {
|
|
105
105
|
[x: string]: unknown;
|
|
106
|
-
kind: "custom" | "email" | "
|
|
106
|
+
kind: "custom" | "email" | "url" | "phone_number" | "twitter" | "facebook" | "physical_address";
|
|
107
107
|
label: string;
|
|
108
108
|
city?: string | undefined;
|
|
109
109
|
name?: string | undefined;
|
|
@@ -8,11 +8,11 @@ declare const MissiveCreateContactsInput: z.ZodObject<{
|
|
|
8
8
|
kind: z.ZodEnum<{
|
|
9
9
|
custom: "custom";
|
|
10
10
|
email: "email";
|
|
11
|
+
url: "url";
|
|
11
12
|
phone_number: "phone_number";
|
|
12
13
|
twitter: "twitter";
|
|
13
14
|
facebook: "facebook";
|
|
14
15
|
physical_address: "physical_address";
|
|
15
|
-
url: "url";
|
|
16
16
|
}>;
|
|
17
17
|
name: z.ZodOptional<z.ZodString>;
|
|
18
18
|
label: z.ZodString;
|
|
@@ -103,7 +103,7 @@ declare const missiveCreateContacts: import("@keystrokehq/action").WorkflowActio
|
|
|
103
103
|
contact_book: string;
|
|
104
104
|
infos?: {
|
|
105
105
|
[x: string]: unknown;
|
|
106
|
-
kind: "custom" | "email" | "
|
|
106
|
+
kind: "custom" | "email" | "url" | "phone_number" | "twitter" | "facebook" | "physical_address";
|
|
107
107
|
label: string;
|
|
108
108
|
city?: string | undefined;
|
|
109
109
|
name?: string | undefined;
|
|
@@ -20,11 +20,11 @@ declare const MissiveListContactsOutput: z.ZodObject<{
|
|
|
20
20
|
kind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
21
21
|
custom: "custom";
|
|
22
22
|
email: "email";
|
|
23
|
+
url: "url";
|
|
23
24
|
phone_number: "phone_number";
|
|
24
25
|
twitter: "twitter";
|
|
25
26
|
facebook: "facebook";
|
|
26
27
|
physical_address: "physical_address";
|
|
27
|
-
url: "url";
|
|
28
28
|
}>>>;
|
|
29
29
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30
30
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -20,11 +20,11 @@ declare const MissiveListContactsOutput: z.ZodObject<{
|
|
|
20
20
|
kind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
21
21
|
custom: "custom";
|
|
22
22
|
email: "email";
|
|
23
|
+
url: "url";
|
|
23
24
|
phone_number: "phone_number";
|
|
24
25
|
twitter: "twitter";
|
|
25
26
|
facebook: "facebook";
|
|
26
27
|
physical_address: "physical_address";
|
|
27
|
-
url: "url";
|
|
28
28
|
}>>>;
|
|
29
29
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30
30
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -9,11 +9,11 @@ declare const MissiveUpdateContactInput: z.ZodObject<{
|
|
|
9
9
|
kind: z.ZodEnum<{
|
|
10
10
|
custom: "custom";
|
|
11
11
|
email: "email";
|
|
12
|
+
url: "url";
|
|
12
13
|
phone_number: "phone_number";
|
|
13
14
|
twitter: "twitter";
|
|
14
15
|
facebook: "facebook";
|
|
15
16
|
physical_address: "physical_address";
|
|
16
|
-
url: "url";
|
|
17
17
|
}>;
|
|
18
18
|
label: z.ZodOptional<z.ZodString>;
|
|
19
19
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -101,7 +101,7 @@ declare const missiveUpdateContact: import("@keystrokehq/action").WorkflowAction
|
|
|
101
101
|
id: string;
|
|
102
102
|
infos?: {
|
|
103
103
|
[x: string]: unknown;
|
|
104
|
-
kind: "custom" | "email" | "
|
|
104
|
+
kind: "custom" | "email" | "url" | "phone_number" | "twitter" | "facebook" | "physical_address";
|
|
105
105
|
city?: string | undefined;
|
|
106
106
|
label?: string | undefined;
|
|
107
107
|
value?: string | undefined;
|
|
@@ -9,11 +9,11 @@ declare const MissiveUpdateContactInput: z.ZodObject<{
|
|
|
9
9
|
kind: z.ZodEnum<{
|
|
10
10
|
custom: "custom";
|
|
11
11
|
email: "email";
|
|
12
|
+
url: "url";
|
|
12
13
|
phone_number: "phone_number";
|
|
13
14
|
twitter: "twitter";
|
|
14
15
|
facebook: "facebook";
|
|
15
16
|
physical_address: "physical_address";
|
|
16
|
-
url: "url";
|
|
17
17
|
}>;
|
|
18
18
|
label: z.ZodOptional<z.ZodString>;
|
|
19
19
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -101,7 +101,7 @@ declare const missiveUpdateContact: import("@keystrokehq/action").WorkflowAction
|
|
|
101
101
|
id: string;
|
|
102
102
|
infos?: {
|
|
103
103
|
[x: string]: unknown;
|
|
104
|
-
kind: "custom" | "email" | "
|
|
104
|
+
kind: "custom" | "email" | "url" | "phone_number" | "twitter" | "facebook" | "physical_address";
|
|
105
105
|
city?: string | undefined;
|
|
106
106
|
label?: string | undefined;
|
|
107
107
|
value?: string | undefined;
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const missiveCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/missive",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "bearer_token": {
|
|
12
12
|
"label": "API Token",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your personal Missive API token. Create one in Missive under Settings → API → 'Create a new token' (your org must be on the Productive plan)."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const missiveCatalog = {\n \"slug\": \"missive\",\n \"name\": \"Missive\",\n \"description\": \"Missive is a collaborative email and chat application designed to streamline team communication and task management.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/missive\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const missiveCatalog = {\n \"slug\": \"missive\",\n \"name\": \"Missive\",\n \"description\": \"Missive is a collaborative email and chat application designed to streamline team communication and task management.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/missive\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"bearer_token\": {\n \"label\": \"API Token\",\n \"secret\": true,\n \"description\": \"Your personal Missive API token. Create one in Missive under Settings → API → 'Create a new token' (your org must be on the Productive plan).\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,gBAAgB;EACd,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const missiveCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly bearer_token: {
|
|
13
13
|
readonly label: "API Token";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your personal Missive API token. Create one in Missive under Settings → API → 'Create a new token' (your org must be on the Productive plan).";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const missiveCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly bearer_token: {
|
|
13
13
|
readonly label: "API Token";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your personal Missive API token. Create one in Missive under Settings → API → 'Create a new token' (your org must be on the Productive plan).";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const missiveCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/missive",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "bearer_token": {
|
|
12
12
|
"label": "API Token",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your personal Missive API token. Create one in Missive under Settings → API → 'Create a new token' (your org must be on the Productive plan)."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const missiveCatalog = {\n \"slug\": \"missive\",\n \"name\": \"Missive\",\n \"description\": \"Missive is a collaborative email and chat application designed to streamline team communication and task management.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/missive\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const missiveCatalog = {\n \"slug\": \"missive\",\n \"name\": \"Missive\",\n \"description\": \"Missive is a collaborative email and chat application designed to streamline team communication and task management.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/missive\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"bearer_token\": {\n \"label\": \"API Token\",\n \"secret\": true,\n \"description\": \"Your personal Missive API token. Create one in Missive under Settings → API → 'Create a new token' (your org must be on the Productive plan).\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,gBAAgB;EACd,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|