@use-stall/types 0.1.5 → 0.1.6

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/index.d.ts CHANGED
@@ -24,3 +24,4 @@ export * from "./src/fulfillment";
24
24
  export * from "./src/extensions";
25
25
  export * from "./src/connectors";
26
26
  export * from "./src/pin-auth";
27
+ export * from "./src/integrations";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@use-stall/types",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Type declarations for Stall SDKs",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",
@@ -66,10 +66,3 @@ export interface ConnectorConfigurationType {
66
66
  api_key_value: string; // For API key authentication or Custom header
67
67
  };
68
68
  }
69
-
70
- export interface ConnectorIntegrationRequestType {
71
- id: string;
72
- organization: string;
73
- integration: string;
74
- created_at: number;
75
- }
@@ -0,0 +1,7 @@
1
+
2
+ export interface IntegrationRequestType {
3
+ id: string;
4
+ organization: string;
5
+ integration: string;
6
+ created_at: number;
7
+ }