emulate 0.2.0 → 0.4.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/LICENSE +202 -0
- package/README.md +386 -9
- package/dist/api.d.ts +3 -13
- package/dist/api.js +707 -17186
- package/dist/api.js.map +1 -1
- package/dist/chunk-D6EKRYGP.js +1615 -0
- package/dist/chunk-D6EKRYGP.js.map +1 -0
- package/dist/chunk-TEPNEZ63.js +2143 -0
- package/dist/chunk-TEPNEZ63.js.map +1 -0
- package/dist/dist-6EW7SSOZ.js +3641 -0
- package/dist/dist-6EW7SSOZ.js.map +1 -0
- package/dist/dist-6JFNJPUU.js +626 -0
- package/dist/dist-6JFNJPUU.js.map +1 -0
- package/dist/dist-B674PYKV.js +961 -0
- package/dist/dist-B674PYKV.js.map +1 -0
- package/dist/dist-G7WQPZ3Y.js +1287 -0
- package/dist/dist-G7WQPZ3Y.js.map +1 -0
- package/dist/dist-H6JYGQM4.js +10586 -0
- package/dist/dist-H6JYGQM4.js.map +1 -0
- package/dist/dist-OTJZRQ3Q.js +1956 -0
- package/dist/dist-OTJZRQ3Q.js.map +1 -0
- package/dist/dist-QMOJM6DV.js +774 -0
- package/dist/dist-QMOJM6DV.js.map +1 -0
- package/dist/dist-RDFBZ5O6.js +2684 -0
- package/dist/dist-RDFBZ5O6.js.map +1 -0
- package/dist/dist-RMK3BS5M.js +843 -0
- package/dist/dist-RMK3BS5M.js.map +1 -0
- package/dist/dist-VVXVP5EZ.js +1199 -0
- package/dist/dist-VVXVP5EZ.js.map +1 -0
- package/dist/dist-YOVM5HEY.js +932 -0
- package/dist/dist-YOVM5HEY.js.map +1 -0
- package/dist/index.js +740 -17353
- package/dist/index.js.map +1 -1
- package/package.json +21 -14
package/dist/api.d.ts
CHANGED
|
@@ -1,22 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { GitHubSeedConfig } from '@internal/github';
|
|
4
|
-
import { GoogleSeedConfig } from '@internal/google';
|
|
1
|
+
declare const SERVICE_NAME_LIST: readonly ["vercel", "github", "google", "slack", "apple", "microsoft", "okta", "aws", "resend", "stripe", "mongoatlas"];
|
|
2
|
+
type ServiceName = (typeof SERVICE_NAME_LIST)[number];
|
|
5
3
|
|
|
6
|
-
declare const SERVICE_PLUGINS: {
|
|
7
|
-
readonly vercel: _internal_core.ServicePlugin;
|
|
8
|
-
readonly github: _internal_core.ServicePlugin;
|
|
9
|
-
readonly google: _internal_core.ServicePlugin;
|
|
10
|
-
};
|
|
11
|
-
type ServiceName = keyof typeof SERVICE_PLUGINS;
|
|
12
4
|
interface SeedConfig {
|
|
13
5
|
tokens?: Record<string, {
|
|
14
6
|
login: string;
|
|
15
7
|
scopes?: string[];
|
|
16
8
|
}>;
|
|
17
|
-
|
|
18
|
-
github?: GitHubSeedConfig;
|
|
19
|
-
google?: GoogleSeedConfig;
|
|
9
|
+
[service: string]: unknown;
|
|
20
10
|
}
|
|
21
11
|
interface EmulatorOptions {
|
|
22
12
|
service: ServiceName;
|