@develit-io/backend-sdk 11.3.0 → 12.0.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/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12,7 +12,10 @@ import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
|
12
12
|
|
|
13
13
|
declare const ENVIRONMENT: string[];
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
declare const NAMED_ENVIRONMENTS: readonly ["localhost", "dev", "staging", "production"];
|
|
16
|
+
type NamedEnvironment = (typeof NAMED_ENVIRONMENTS)[number];
|
|
17
|
+
type PreviewEnvironment = number;
|
|
18
|
+
type Environment = NamedEnvironment | PreviewEnvironment;
|
|
16
19
|
|
|
17
20
|
type Project = 'creditio' | 'cryptobyte-website' | 'dbu-payments-api' | 'dbu-mdm' | 'dbu-txs' | 'develit-sdk' | 'kachlikarna-pridavac' | 'lrf-website' | 'moneio' | 'stable-labs-emi-processor';
|
|
18
21
|
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,10 @@ import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
|
12
12
|
|
|
13
13
|
declare const ENVIRONMENT: string[];
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
declare const NAMED_ENVIRONMENTS: readonly ["localhost", "dev", "staging", "production"];
|
|
16
|
+
type NamedEnvironment = (typeof NAMED_ENVIRONMENTS)[number];
|
|
17
|
+
type PreviewEnvironment = number;
|
|
18
|
+
type Environment = NamedEnvironment | PreviewEnvironment;
|
|
16
19
|
|
|
17
20
|
type Project = 'creditio' | 'cryptobyte-website' | 'dbu-payments-api' | 'dbu-mdm' | 'dbu-txs' | 'develit-sdk' | 'kachlikarna-pridavac' | 'lrf-website' | 'moneio' | 'stable-labs-emi-processor';
|
|
18
21
|
|