@chirpie/sdk 1.0.7 → 1.0.8

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/index.d.mts CHANGED
@@ -96,7 +96,7 @@ interface ApiKeyInfo {
96
96
  key_prefix: string;
97
97
  last_used_at: string | null;
98
98
  created_at: string;
99
- revoked: boolean;
99
+ expires_at: string | null;
100
100
  }
101
101
  interface CreatePostInput {
102
102
  account_id: string;
@@ -183,6 +183,8 @@ declare class ChirpieClient {
183
183
  key: string;
184
184
  prefix: string;
185
185
  name: string;
186
+ expires_at: string;
187
+ message: string;
186
188
  }>;
187
189
  listKeys(): Promise<ApiKeyInfo[]>;
188
190
  revokeKey(id: string): Promise<{
package/dist/index.d.ts CHANGED
@@ -96,7 +96,7 @@ interface ApiKeyInfo {
96
96
  key_prefix: string;
97
97
  last_used_at: string | null;
98
98
  created_at: string;
99
- revoked: boolean;
99
+ expires_at: string | null;
100
100
  }
101
101
  interface CreatePostInput {
102
102
  account_id: string;
@@ -183,6 +183,8 @@ declare class ChirpieClient {
183
183
  key: string;
184
184
  prefix: string;
185
185
  name: string;
186
+ expires_at: string;
187
+ message: string;
186
188
  }>;
187
189
  listKeys(): Promise<ApiKeyInfo[]>;
188
190
  revokeKey(id: string): Promise<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chirpie/sdk",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Chirpie SDK — TypeScript client for the Chirpie social media API",
5
5
  "repository": {
6
6
  "type": "git",