@keystrokehq/quaderno 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.
@@ -21,11 +21,11 @@ declare const QuadernoCreateExpenseInput: z.ZodObject<{
21
21
  notes: z.ZodOptional<z.ZodString>;
22
22
  state: z.ZodOptional<z.ZodEnum<{
23
23
  outstanding: "outstanding";
24
- late: "late";
25
- uncollectible: "uncollectible";
26
24
  paid: "paid";
27
25
  refunded: "refunded";
28
26
  archived: "archived";
27
+ late: "late";
28
+ uncollectible: "uncollectible";
29
29
  }>>;
30
30
  region: z.ZodOptional<z.ZodString>;
31
31
  contact: z.ZodUnion<readonly [z.ZodObject<{
@@ -208,7 +208,7 @@ declare const quadernoCreateExpense: import("@keystrokehq/action").WorkflowActio
208
208
  };
209
209
  city?: string | undefined;
210
210
  notes?: string | undefined;
211
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
211
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
212
212
  region?: string | undefined;
213
213
  country?: string | undefined;
214
214
  subject?: string | undefined;
@@ -21,11 +21,11 @@ declare const QuadernoCreateExpenseInput: z.ZodObject<{
21
21
  notes: z.ZodOptional<z.ZodString>;
22
22
  state: z.ZodOptional<z.ZodEnum<{
23
23
  outstanding: "outstanding";
24
- late: "late";
25
- uncollectible: "uncollectible";
26
24
  paid: "paid";
27
25
  refunded: "refunded";
28
26
  archived: "archived";
27
+ late: "late";
28
+ uncollectible: "uncollectible";
29
29
  }>>;
30
30
  region: z.ZodOptional<z.ZodString>;
31
31
  contact: z.ZodUnion<readonly [z.ZodObject<{
@@ -208,7 +208,7 @@ declare const quadernoCreateExpense: import("@keystrokehq/action").WorkflowActio
208
208
  };
209
209
  city?: string | undefined;
210
210
  notes?: string | undefined;
211
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
211
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
212
212
  region?: string | undefined;
213
213
  country?: string | undefined;
214
214
  subject?: string | undefined;
@@ -63,11 +63,11 @@ declare const QuadernoCreateInvoiceOutput: z.ZodObject<{
63
63
  notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
64
  state: z.ZodNullable<z.ZodEnum<{
65
65
  outstanding: "outstanding";
66
- late: "late";
67
- uncollectible: "uncollectible";
68
66
  paid: "paid";
69
67
  refunded: "refunded";
70
68
  archived: "archived";
69
+ late: "late";
70
+ uncollectible: "uncollectible";
71
71
  }>>;
72
72
  taxes: z.ZodArray<z.ZodObject<{
73
73
  rate: z.ZodNullable<z.ZodNumber>;
@@ -63,11 +63,11 @@ declare const QuadernoCreateInvoiceOutput: z.ZodObject<{
63
63
  notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
64
  state: z.ZodNullable<z.ZodEnum<{
65
65
  outstanding: "outstanding";
66
- late: "late";
67
- uncollectible: "uncollectible";
68
66
  paid: "paid";
69
67
  refunded: "refunded";
70
68
  archived: "archived";
69
+ late: "late";
70
+ uncollectible: "uncollectible";
71
71
  }>>;
72
72
  taxes: z.ZodArray<z.ZodObject<{
73
73
  rate: z.ZodNullable<z.ZodNumber>;
@@ -5,8 +5,8 @@ declare const QuadernoCreateRecurringInput: z.ZodObject<{
5
5
  items: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6
6
  notes: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
8
- archived: "archived";
9
8
  active: "active";
9
+ archived: "archived";
10
10
  }>>>;
11
11
  taxes: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
12
12
  contact: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -18,12 +18,12 @@ declare const QuadernoCreateRecurringInput: z.ZodObject<{
18
18
  frequency: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
19
19
  daily: "daily";
20
20
  weekly: "weekly";
21
- monthly: "monthly";
22
- yearly: "yearly";
23
21
  biweekly: "biweekly";
22
+ monthly: "monthly";
24
23
  bimonthly: "bimonthly";
25
24
  quarterly: "quarterly";
26
25
  semiyearly: "semiyearly";
26
+ yearly: "yearly";
27
27
  biyearly: "biyearly";
28
28
  }>>>;
29
29
  po_number: z.ZodOptional<z.ZodString>;
@@ -118,14 +118,14 @@ declare const quadernoCreateRecurring: import("@keystrokehq/action").WorkflowAct
118
118
  items: Record<string, unknown>[];
119
119
  contact: Record<string, unknown>;
120
120
  notes?: string | undefined;
121
- state?: "archived" | "active" | undefined;
121
+ state?: "active" | "archived" | undefined;
122
122
  taxes?: Record<string, unknown>[] | undefined;
123
123
  subject?: string | undefined;
124
124
  currency?: string | undefined;
125
125
  due_days?: string | undefined;
126
126
  end_date?: string | undefined;
127
127
  tag_list?: string[] | undefined;
128
- frequency?: "daily" | "weekly" | "monthly" | "yearly" | "biweekly" | "bimonthly" | "quarterly" | "semiyearly" | "biyearly" | undefined;
128
+ frequency?: "daily" | "weekly" | "biweekly" | "monthly" | "bimonthly" | "quarterly" | "semiyearly" | "yearly" | "biyearly" | undefined;
129
129
  po_number?: string | undefined;
130
130
  start_date?: string | undefined;
131
131
  custom_metadata?: Record<string, unknown> | undefined;
@@ -5,8 +5,8 @@ declare const QuadernoCreateRecurringInput: z.ZodObject<{
5
5
  items: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6
6
  notes: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
8
- archived: "archived";
9
8
  active: "active";
9
+ archived: "archived";
10
10
  }>>>;
11
11
  taxes: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
12
12
  contact: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -18,12 +18,12 @@ declare const QuadernoCreateRecurringInput: z.ZodObject<{
18
18
  frequency: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
19
19
  daily: "daily";
20
20
  weekly: "weekly";
21
- monthly: "monthly";
22
- yearly: "yearly";
23
21
  biweekly: "biweekly";
22
+ monthly: "monthly";
24
23
  bimonthly: "bimonthly";
25
24
  quarterly: "quarterly";
26
25
  semiyearly: "semiyearly";
26
+ yearly: "yearly";
27
27
  biyearly: "biyearly";
28
28
  }>>>;
29
29
  po_number: z.ZodOptional<z.ZodString>;
@@ -118,14 +118,14 @@ declare const quadernoCreateRecurring: import("@keystrokehq/action").WorkflowAct
118
118
  items: Record<string, unknown>[];
119
119
  contact: Record<string, unknown>;
120
120
  notes?: string | undefined;
121
- state?: "archived" | "active" | undefined;
121
+ state?: "active" | "archived" | undefined;
122
122
  taxes?: Record<string, unknown>[] | undefined;
123
123
  subject?: string | undefined;
124
124
  currency?: string | undefined;
125
125
  due_days?: string | undefined;
126
126
  end_date?: string | undefined;
127
127
  tag_list?: string[] | undefined;
128
- frequency?: "daily" | "weekly" | "monthly" | "yearly" | "biweekly" | "bimonthly" | "quarterly" | "semiyearly" | "biyearly" | undefined;
128
+ frequency?: "daily" | "weekly" | "biweekly" | "monthly" | "bimonthly" | "quarterly" | "semiyearly" | "yearly" | "biyearly" | undefined;
129
129
  po_number?: string | undefined;
130
130
  start_date?: string | undefined;
131
131
  custom_metadata?: Record<string, unknown> | undefined;
@@ -6,11 +6,11 @@ declare const QuadernoListCreditsInput: z.ZodObject<{
6
6
  date: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodEnum<{
8
8
  outstanding: "outstanding";
9
- late: "late";
10
- uncollectible: "uncollectible";
11
9
  paid: "paid";
12
10
  refunded: "refunded";
13
11
  archived: "archived";
12
+ late: "late";
13
+ uncollectible: "uncollectible";
14
14
  }>>;
15
15
  processor_id: z.ZodOptional<z.ZodString>;
16
16
  }, z.core.$strip>;
@@ -87,7 +87,7 @@ declare const QuadernoListCreditsOutput: z.ZodObject<{
87
87
  declare const quadernoListCredits: import("@keystrokehq/action").WorkflowActionDefinition<{
88
88
  q?: string | undefined;
89
89
  date?: string | undefined;
90
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
90
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
91
91
  processor_id?: string | undefined;
92
92
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
93
93
  //#endregion
@@ -6,11 +6,11 @@ declare const QuadernoListCreditsInput: z.ZodObject<{
6
6
  date: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodEnum<{
8
8
  outstanding: "outstanding";
9
- late: "late";
10
- uncollectible: "uncollectible";
11
9
  paid: "paid";
12
10
  refunded: "refunded";
13
11
  archived: "archived";
12
+ late: "late";
13
+ uncollectible: "uncollectible";
14
14
  }>>;
15
15
  processor_id: z.ZodOptional<z.ZodString>;
16
16
  }, z.core.$strip>;
@@ -87,7 +87,7 @@ declare const QuadernoListCreditsOutput: z.ZodObject<{
87
87
  declare const quadernoListCredits: import("@keystrokehq/action").WorkflowActionDefinition<{
88
88
  q?: string | undefined;
89
89
  date?: string | undefined;
90
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
90
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
91
91
  processor_id?: string | undefined;
92
92
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
93
93
  //#endregion
@@ -6,11 +6,11 @@ declare const QuadernoListInvoicesInput: z.ZodObject<{
6
6
  date: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodEnum<{
8
8
  outstanding: "outstanding";
9
- late: "late";
10
- uncollectible: "uncollectible";
11
9
  paid: "paid";
12
10
  refunded: "refunded";
13
11
  archived: "archived";
12
+ late: "late";
13
+ uncollectible: "uncollectible";
14
14
  }>>;
15
15
  contact: z.ZodOptional<z.ZodNumber>;
16
16
  processor_id: z.ZodOptional<z.ZodString>;
@@ -125,7 +125,7 @@ declare const QuadernoListInvoicesOutput: z.ZodObject<{
125
125
  declare const quadernoListInvoices: import("@keystrokehq/action").WorkflowActionDefinition<{
126
126
  q?: string | undefined;
127
127
  date?: string | undefined;
128
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
128
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
129
129
  contact?: number | undefined;
130
130
  processor_id?: string | undefined;
131
131
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,11 +6,11 @@ declare const QuadernoListInvoicesInput: z.ZodObject<{
6
6
  date: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodEnum<{
8
8
  outstanding: "outstanding";
9
- late: "late";
10
- uncollectible: "uncollectible";
11
9
  paid: "paid";
12
10
  refunded: "refunded";
13
11
  archived: "archived";
12
+ late: "late";
13
+ uncollectible: "uncollectible";
14
14
  }>>;
15
15
  contact: z.ZodOptional<z.ZodNumber>;
16
16
  processor_id: z.ZodOptional<z.ZodString>;
@@ -125,7 +125,7 @@ declare const QuadernoListInvoicesOutput: z.ZodObject<{
125
125
  declare const quadernoListInvoices: import("@keystrokehq/action").WorkflowActionDefinition<{
126
126
  q?: string | undefined;
127
127
  date?: string | undefined;
128
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
128
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
129
129
  contact?: number | undefined;
130
130
  processor_id?: string | undefined;
131
131
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,11 +6,11 @@ declare const QuadernoListReceiptsInput: z.ZodObject<{
6
6
  date: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodEnum<{
8
8
  outstanding: "outstanding";
9
- late: "late";
10
- uncollectible: "uncollectible";
11
9
  paid: "paid";
12
10
  refunded: "refunded";
13
11
  archived: "archived";
12
+ late: "late";
13
+ uncollectible: "uncollectible";
14
14
  }>>;
15
15
  contact: z.ZodOptional<z.ZodNumber>;
16
16
  processor_id: z.ZodOptional<z.ZodString>;
@@ -132,7 +132,7 @@ declare const QuadernoListReceiptsOutput: z.ZodObject<{
132
132
  declare const quadernoListReceipts: import("@keystrokehq/action").WorkflowActionDefinition<{
133
133
  q?: string | undefined;
134
134
  date?: string | undefined;
135
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
135
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
136
136
  contact?: number | undefined;
137
137
  processor_id?: string | undefined;
138
138
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,11 +6,11 @@ declare const QuadernoListReceiptsInput: z.ZodObject<{
6
6
  date: z.ZodOptional<z.ZodString>;
7
7
  state: z.ZodOptional<z.ZodEnum<{
8
8
  outstanding: "outstanding";
9
- late: "late";
10
- uncollectible: "uncollectible";
11
9
  paid: "paid";
12
10
  refunded: "refunded";
13
11
  archived: "archived";
12
+ late: "late";
13
+ uncollectible: "uncollectible";
14
14
  }>>;
15
15
  contact: z.ZodOptional<z.ZodNumber>;
16
16
  processor_id: z.ZodOptional<z.ZodString>;
@@ -132,7 +132,7 @@ declare const QuadernoListReceiptsOutput: z.ZodObject<{
132
132
  declare const quadernoListReceipts: import("@keystrokehq/action").WorkflowActionDefinition<{
133
133
  q?: string | undefined;
134
134
  date?: string | undefined;
135
- state?: "outstanding" | "late" | "uncollectible" | "paid" | "refunded" | "archived" | undefined;
135
+ state?: "outstanding" | "paid" | "refunded" | "archived" | "late" | "uncollectible" | undefined;
136
136
  contact?: number | undefined;
137
137
  processor_id?: string | undefined;
138
138
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -21,8 +21,8 @@ declare const QuadernoUpdateRecurringInput: z.ZodObject<{
21
21
  }, z.core.$loose>>>;
22
22
  notes: z.ZodOptional<z.ZodString>;
23
23
  state: z.ZodOptional<z.ZodEnum<{
24
- archived: "archived";
25
24
  active: "active";
25
+ archived: "archived";
26
26
  }>>;
27
27
  taxes: z.ZodOptional<z.ZodArray<z.ZodObject<{
28
28
  rate: z.ZodOptional<z.ZodNumber>;
@@ -59,12 +59,12 @@ declare const QuadernoUpdateRecurringInput: z.ZodObject<{
59
59
  frequency: z.ZodOptional<z.ZodEnum<{
60
60
  daily: "daily";
61
61
  weekly: "weekly";
62
- monthly: "monthly";
63
- yearly: "yearly";
64
62
  biweekly: "biweekly";
63
+ monthly: "monthly";
65
64
  bimonthly: "bimonthly";
66
65
  quarterly: "quarterly";
67
66
  semiyearly: "semiyearly";
67
+ yearly: "yearly";
68
68
  biyearly: "biyearly";
69
69
  }>>;
70
70
  po_number: z.ZodOptional<z.ZodString>;
@@ -176,7 +176,7 @@ declare const quadernoUpdateRecurring: import("@keystrokehq/action").WorkflowAct
176
176
  tax_2_country?: string | undefined;
177
177
  }[] | undefined;
178
178
  notes?: string | undefined;
179
- state?: "archived" | "active" | undefined;
179
+ state?: "active" | "archived" | undefined;
180
180
  taxes?: {
181
181
  [x: string]: unknown;
182
182
  rate?: number | undefined;
@@ -210,7 +210,7 @@ declare const quadernoUpdateRecurring: import("@keystrokehq/action").WorkflowAct
210
210
  due_days?: string | undefined;
211
211
  end_date?: string | undefined;
212
212
  tag_list?: string[] | undefined;
213
- frequency?: "daily" | "weekly" | "monthly" | "yearly" | "biweekly" | "bimonthly" | "quarterly" | "semiyearly" | "biyearly" | undefined;
213
+ frequency?: "daily" | "weekly" | "biweekly" | "monthly" | "bimonthly" | "quarterly" | "semiyearly" | "yearly" | "biyearly" | undefined;
214
214
  po_number?: string | undefined;
215
215
  start_date?: string | undefined;
216
216
  custom_metadata?: Record<string, unknown> | undefined;
@@ -21,8 +21,8 @@ declare const QuadernoUpdateRecurringInput: z.ZodObject<{
21
21
  }, z.core.$loose>>>;
22
22
  notes: z.ZodOptional<z.ZodString>;
23
23
  state: z.ZodOptional<z.ZodEnum<{
24
- archived: "archived";
25
24
  active: "active";
25
+ archived: "archived";
26
26
  }>>;
27
27
  taxes: z.ZodOptional<z.ZodArray<z.ZodObject<{
28
28
  rate: z.ZodOptional<z.ZodNumber>;
@@ -59,12 +59,12 @@ declare const QuadernoUpdateRecurringInput: z.ZodObject<{
59
59
  frequency: z.ZodOptional<z.ZodEnum<{
60
60
  daily: "daily";
61
61
  weekly: "weekly";
62
- monthly: "monthly";
63
- yearly: "yearly";
64
62
  biweekly: "biweekly";
63
+ monthly: "monthly";
65
64
  bimonthly: "bimonthly";
66
65
  quarterly: "quarterly";
67
66
  semiyearly: "semiyearly";
67
+ yearly: "yearly";
68
68
  biyearly: "biyearly";
69
69
  }>>;
70
70
  po_number: z.ZodOptional<z.ZodString>;
@@ -176,7 +176,7 @@ declare const quadernoUpdateRecurring: import("@keystrokehq/action").WorkflowAct
176
176
  tax_2_country?: string | undefined;
177
177
  }[] | undefined;
178
178
  notes?: string | undefined;
179
- state?: "archived" | "active" | undefined;
179
+ state?: "active" | "archived" | undefined;
180
180
  taxes?: {
181
181
  [x: string]: unknown;
182
182
  rate?: number | undefined;
@@ -210,7 +210,7 @@ declare const quadernoUpdateRecurring: import("@keystrokehq/action").WorkflowAct
210
210
  due_days?: string | undefined;
211
211
  end_date?: string | undefined;
212
212
  tag_list?: string[] | undefined;
213
- frequency?: "daily" | "weekly" | "monthly" | "yearly" | "biweekly" | "bimonthly" | "quarterly" | "semiyearly" | "biyearly" | undefined;
213
+ frequency?: "daily" | "weekly" | "biweekly" | "monthly" | "bimonthly" | "quarterly" | "semiyearly" | "yearly" | "biyearly" | undefined;
214
214
  po_number?: string | undefined;
215
215
  start_date?: string | undefined;
216
216
  custom_metadata?: Record<string, unknown> | undefined;
package/dist/catalog.cjs CHANGED
@@ -13,7 +13,7 @@ const quadernoCatalog = {
13
13
  "label": "Quaderno Account Subdomain",
14
14
  "description": "Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'."
15
15
  },
16
- "api_key": {
16
+ "generic_api_key": {
17
17
  "label": "Quaderno API Key",
18
18
  "secret": true,
19
19
  "description": "Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const quadernoCatalog = {\n \"slug\": \"quaderno\",\n \"name\": \"Quaderno\",\n \"description\": \"Quaderno is a tax compliance platform that automates tax calculations, invoicing, and reporting for businesses worldwide.\",\n \"category\": \"Taxes\",\n \"logo\": \"https://logos.composio.dev/api/quaderno\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Quaderno Account Subdomain\",\n \"description\": \"Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'.\"\n },\n \"api_key\": {\n \"label\": \"Quaderno API Key\",\n \"secret\": true,\n \"description\": \"Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const quadernoCatalog = {\n \"slug\": \"quaderno\",\n \"name\": \"Quaderno\",\n \"description\": \"Quaderno is a tax compliance platform that automates tax calculations, invoicing, and reporting for businesses worldwide.\",\n \"category\": \"Taxes\",\n \"logo\": \"https://logos.composio.dev/api/quaderno\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Quaderno Account Subdomain\",\n \"description\": \"Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'.\"\n },\n \"generic_api_key\": {\n \"label\": \"Quaderno API Key\",\n \"secret\": true,\n \"description\": \"Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
@@ -13,7 +13,7 @@ declare const quadernoCatalog: {
13
13
  readonly label: "Quaderno Account Subdomain";
14
14
  readonly description: "Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'.";
15
15
  };
16
- readonly api_key: {
16
+ readonly generic_api_key: {
17
17
  readonly label: "Quaderno API Key";
18
18
  readonly secret: true;
19
19
  readonly description: "Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'.";
@@ -13,7 +13,7 @@ declare const quadernoCatalog: {
13
13
  readonly label: "Quaderno Account Subdomain";
14
14
  readonly description: "Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'.";
15
15
  };
16
- readonly api_key: {
16
+ readonly generic_api_key: {
17
17
  readonly label: "Quaderno API Key";
18
18
  readonly secret: true;
19
19
  readonly description: "Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'.";
package/dist/catalog.mjs CHANGED
@@ -13,7 +13,7 @@ const quadernoCatalog = {
13
13
  "label": "Quaderno Account Subdomain",
14
14
  "description": "Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'."
15
15
  },
16
- "api_key": {
16
+ "generic_api_key": {
17
17
  "label": "Quaderno API Key",
18
18
  "secret": true,
19
19
  "description": "Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const quadernoCatalog = {\n \"slug\": \"quaderno\",\n \"name\": \"Quaderno\",\n \"description\": \"Quaderno is a tax compliance platform that automates tax calculations, invoicing, and reporting for businesses worldwide.\",\n \"category\": \"Taxes\",\n \"logo\": \"https://logos.composio.dev/api/quaderno\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Quaderno Account Subdomain\",\n \"description\": \"Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'.\"\n },\n \"api_key\": {\n \"label\": \"Quaderno API Key\",\n \"secret\": true,\n \"description\": \"Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const quadernoCatalog = {\n \"slug\": \"quaderno\",\n \"name\": \"Quaderno\",\n \"description\": \"Quaderno is a tax compliance platform that automates tax calculations, invoicing, and reporting for businesses worldwide.\",\n \"category\": \"Taxes\",\n \"logo\": \"https://logos.composio.dev/api/quaderno\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Quaderno Account Subdomain\",\n \"description\": \"Your Quaderno account subdomain, derived from your Quaderno account URL. For example, if your Quaderno account URL is 'https://acmeinc.quadernoapp.com', then the subdomain is 'acmeinc'.\"\n },\n \"generic_api_key\": {\n \"label\": \"Quaderno API Key\",\n \"secret\": true,\n \"description\": \"Your Quaderno API Key, found under 'DEVELOPERS' > 'API Keys' > 'Private Key'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/quaderno",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"