@liquidmetal-ai/raindrop 0.2.4 → 0.2.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/README.md +39 -39
- package/dist/base-command.d.ts +8 -0
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +35 -1
- package/dist/codegen.js +2 -2
- package/dist/codegen.test.js +1 -1
- package/dist/commands/build/branch.d.ts +5 -2
- package/dist/commands/build/branch.d.ts.map +1 -1
- package/dist/commands/build/branch.js +1 -17
- package/dist/commands/build/checkout.d.ts +4 -1
- package/dist/commands/build/checkout.d.ts.map +1 -1
- package/dist/commands/build/checkout.js +1 -17
- package/dist/commands/build/delete.d.ts +4 -1
- package/dist/commands/build/delete.d.ts.map +1 -1
- package/dist/commands/build/delete.js +1 -17
- package/dist/commands/build/deploy.d.ts +6 -3
- package/dist/commands/build/deploy.d.ts.map +1 -1
- package/dist/commands/build/deploy.js +1 -17
- package/dist/commands/build/env/get.d.ts +5 -2
- package/dist/commands/build/env/get.d.ts.map +1 -1
- package/dist/commands/build/env/get.js +1 -17
- package/dist/commands/build/env/set.d.ts +4 -1
- package/dist/commands/build/env/set.d.ts.map +1 -1
- package/dist/commands/build/env/set.js +1 -17
- package/dist/commands/build/find.d.ts +4 -1
- package/dist/commands/build/find.d.ts.map +1 -1
- package/dist/commands/build/find.js +2 -25
- package/dist/commands/build/list.d.ts +4 -0
- package/dist/commands/build/list.d.ts.map +1 -1
- package/dist/commands/build/list.js +10 -18
- package/dist/commands/build/sandbox.d.ts +5 -2
- package/dist/commands/build/sandbox.d.ts.map +1 -1
- package/dist/commands/build/sandbox.js +1 -14
- package/dist/commands/build/start.d.ts +4 -1
- package/dist/commands/build/start.d.ts.map +1 -1
- package/dist/commands/build/start.js +1 -17
- package/dist/commands/build/status.d.ts +7 -2
- package/dist/commands/build/status.d.ts.map +1 -1
- package/dist/commands/build/status.js +64 -30
- package/dist/commands/build/stop.d.ts +4 -1
- package/dist/commands/build/stop.d.ts.map +1 -1
- package/dist/commands/build/stop.js +2 -18
- package/dist/commands/build/unsandbox.d.ts +5 -2
- package/dist/commands/build/unsandbox.d.ts.map +1 -1
- package/dist/commands/build/unsandbox.js +2 -15
- package/dist/commands/build/upload.d.ts +4 -1
- package/dist/commands/build/upload.d.ts.map +1 -1
- package/dist/commands/build/upload.js +1 -17
- package/dist/commands/object/delete.d.ts +4 -0
- package/dist/commands/object/delete.d.ts.map +1 -1
- package/dist/commands/object/delete.js +1 -10
- package/dist/commands/object/get.d.ts +4 -0
- package/dist/commands/object/get.d.ts.map +1 -1
- package/dist/commands/object/get.js +1 -10
- package/dist/commands/object/list.d.ts +4 -0
- package/dist/commands/object/list.d.ts.map +1 -1
- package/dist/commands/object/list.js +2 -11
- package/dist/commands/object/put.d.ts +4 -0
- package/dist/commands/object/put.d.ts.map +1 -1
- package/dist/commands/object/put.js +1 -10
- package/dist/commands/query/chunk-search.d.ts +4 -0
- package/dist/commands/query/chunk-search.d.ts.map +1 -1
- package/dist/commands/query/chunk-search.js +1 -10
- package/dist/commands/query/register-retriever.d.ts +7 -2
- package/dist/commands/query/register-retriever.d.ts.map +1 -1
- package/dist/commands/query/register-retriever.js +6 -10
- package/dist/commands/query/search.d.ts +4 -0
- package/dist/commands/query/search.d.ts.map +1 -1
- package/dist/commands/query/search.js +1 -10
- package/dist/index.d.ts +12 -32
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +23 -40
- package/oclif.manifest.json +3411 -1129
- package/package.json +3 -1
- package/templates/handlers/{r2-event-notification → bucket-event-notification}/index.ts.hbs +5 -1
- package/templates/handlers/queue-consumer/index.ts.hbs +1 -1
- package/templates/init/package.json.hbs +1 -1
- /package/templates/handlers/{r2-event-notification → bucket-event-notification}/index.test.ts +0 -0
|
@@ -16,6 +16,7 @@ Deploy a Raindrop application.
|
|
|
16
16
|
`,
|
|
17
17
|
];
|
|
18
18
|
static flags = {
|
|
19
|
+
...BaseCommand.HIDDEN_FLAGS,
|
|
19
20
|
root: Flags.string({ char: 'r', description: 'root directory', required: false, default: process.cwd() }),
|
|
20
21
|
manifest: Flags.string({
|
|
21
22
|
char: 'm',
|
|
@@ -23,13 +24,6 @@ Deploy a Raindrop application.
|
|
|
23
24
|
required: false,
|
|
24
25
|
default: 'raindrop.manifest',
|
|
25
26
|
}),
|
|
26
|
-
config: Flags.string({
|
|
27
|
-
char: 'c',
|
|
28
|
-
description: 'config file',
|
|
29
|
-
required: false,
|
|
30
|
-
hidden: true,
|
|
31
|
-
default: '.raindrop/config.json',
|
|
32
|
-
}),
|
|
33
27
|
output: Flags.string({ char: 'o', description: 'output directory', required: false, default: 'dist' }),
|
|
34
28
|
versionId: Flags.string({
|
|
35
29
|
char: 'v',
|
|
@@ -43,16 +37,6 @@ Deploy a Raindrop application.
|
|
|
43
37
|
required: false,
|
|
44
38
|
hidden: true,
|
|
45
39
|
}),
|
|
46
|
-
rainbowAuthService: Flags.string({
|
|
47
|
-
default: 'https://liquidmetal.run/api/connect',
|
|
48
|
-
hidden: true,
|
|
49
|
-
env: 'LIQUIDMETAL_RAINBOW_AUTH_SERVICE',
|
|
50
|
-
}),
|
|
51
|
-
raindropCatalogService: Flags.string({
|
|
52
|
-
env: 'RAINDROP_CATALOG_SERVICE',
|
|
53
|
-
description: 'URL of the catalog service',
|
|
54
|
-
hidden: true,
|
|
55
|
-
}),
|
|
56
40
|
start: Flags.boolean({
|
|
57
41
|
char: 's',
|
|
58
42
|
description: 'start the application after deploying',
|
|
@@ -7,13 +7,16 @@ export default class Get extends BaseCommand<typeof Get> {
|
|
|
7
7
|
static examples: string[];
|
|
8
8
|
static flags: {
|
|
9
9
|
output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
|
-
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
|
-
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
10
|
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
13
11
|
versionId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
14
12
|
application: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
13
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
14
|
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
rainbowAuthToken: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
|
+
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
|
+
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
20
|
};
|
|
18
21
|
run(): Promise<void>;
|
|
19
22
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../../src/commands/build/env/get.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,WAAW,CAAC,OAAO,GAAG,CAAC;IACtD,MAAM,CAAC,IAAI;;MAET;IAEF,MAAM,CAAC,WAAW,SAA2B;IAE7C,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK
|
|
1
|
+
{"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../../src/commands/build/env/get.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,WAAW,CAAC,OAAO,GAAG,CAAC;IACtD,MAAM,CAAC,IAAI;;MAET;IAEF,MAAM,CAAC,WAAW,SAA2B;IAE7C,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;;MA0BV;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CA2D3B"}
|
|
@@ -12,17 +12,8 @@ sets an env var/secret.
|
|
|
12
12
|
`,
|
|
13
13
|
];
|
|
14
14
|
static flags = {
|
|
15
|
+
...BaseCommand.HIDDEN_FLAGS,
|
|
15
16
|
output: Flags.string({ char: 'o', description: 'output format', default: 'table' }),
|
|
16
|
-
rainbowAuthService: Flags.string({
|
|
17
|
-
default: 'https://liquidmetal.run/api/connect',
|
|
18
|
-
hidden: true,
|
|
19
|
-
env: 'LIQUIDMETAL_RAINBOW_AUTH_SERVICE',
|
|
20
|
-
}),
|
|
21
|
-
raindropCatalogService: Flags.string({
|
|
22
|
-
env: 'RAINDROP_CATALOG_SERVICE',
|
|
23
|
-
description: 'URL of the catalog service',
|
|
24
|
-
hidden: true,
|
|
25
|
-
}),
|
|
26
17
|
manifest: Flags.string({
|
|
27
18
|
char: 'm',
|
|
28
19
|
description: 'project manifest',
|
|
@@ -46,13 +37,6 @@ sets an env var/secret.
|
|
|
46
37
|
required: false,
|
|
47
38
|
hidden: true,
|
|
48
39
|
}),
|
|
49
|
-
config: Flags.string({
|
|
50
|
-
char: 'c',
|
|
51
|
-
description: 'config file',
|
|
52
|
-
required: false,
|
|
53
|
-
hidden: true,
|
|
54
|
-
default: '.raindrop/config.json',
|
|
55
|
-
}),
|
|
56
40
|
};
|
|
57
41
|
async run() {
|
|
58
42
|
const apps = await this.loadManifest();
|
|
@@ -9,13 +9,16 @@ export default class Set extends BaseCommand<typeof Set> {
|
|
|
9
9
|
static flags: {
|
|
10
10
|
root: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
11
|
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
|
-
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
13
12
|
output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
14
13
|
versionId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
14
|
application: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
15
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
17
|
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
18
|
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
|
+
rainbowAuthToken: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
20
|
+
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
21
|
+
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
22
|
};
|
|
20
23
|
run(): Promise<void>;
|
|
21
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"set.d.ts","sourceRoot":"","sources":["../../../../src/commands/build/env/set.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,WAAW,CAAC,OAAO,GAAG,CAAC;IACtD,MAAM,CAAC,IAAI;;;MAGT;IAEF,MAAM,CAAC,WAAW,SAA2B;IAE7C,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK
|
|
1
|
+
{"version":3,"file":"set.d.ts","sourceRoot":"","sources":["../../../../src/commands/build/env/set.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,WAAW,CAAC,OAAO,GAAG,CAAC;IACtD,MAAM,CAAC,IAAI;;;MAGT;IAEF,MAAM,CAAC,WAAW,SAA2B;IAE7C,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;;;MA2BV;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAsE3B"}
|
|
@@ -13,6 +13,7 @@ sets an env var/secret.
|
|
|
13
13
|
`,
|
|
14
14
|
];
|
|
15
15
|
static flags = {
|
|
16
|
+
...BaseCommand.HIDDEN_FLAGS,
|
|
16
17
|
root: Flags.string({ char: 'r', description: 'root directory', required: false, default: process.cwd() }),
|
|
17
18
|
manifest: Flags.string({
|
|
18
19
|
char: 'm',
|
|
@@ -20,13 +21,6 @@ sets an env var/secret.
|
|
|
20
21
|
required: false,
|
|
21
22
|
default: 'raindrop.manifest',
|
|
22
23
|
}),
|
|
23
|
-
config: Flags.string({
|
|
24
|
-
char: 'c',
|
|
25
|
-
description: 'config file',
|
|
26
|
-
required: false,
|
|
27
|
-
hidden: true,
|
|
28
|
-
default: '.raindrop/config.json',
|
|
29
|
-
}),
|
|
30
24
|
output: Flags.string({ char: 'o', description: 'output format', default: 'table' }),
|
|
31
25
|
versionId: Flags.string({
|
|
32
26
|
char: 'v',
|
|
@@ -45,16 +39,6 @@ sets an env var/secret.
|
|
|
45
39
|
required: false,
|
|
46
40
|
hidden: true,
|
|
47
41
|
}),
|
|
48
|
-
rainbowAuthService: Flags.string({
|
|
49
|
-
default: 'https://liquidmetal.run/api/connect',
|
|
50
|
-
hidden: true,
|
|
51
|
-
env: 'LIQUIDMETAL_RAINBOW_AUTH_SERVICE',
|
|
52
|
-
}),
|
|
53
|
-
raindropCatalogService: Flags.string({
|
|
54
|
-
env: 'RAINDROP_CATALOG_SERVICE',
|
|
55
|
-
description: 'URL of the catalog service',
|
|
56
|
-
hidden: true,
|
|
57
|
-
}),
|
|
58
42
|
};
|
|
59
43
|
async run() {
|
|
60
44
|
const apps = await this.loadManifest();
|
|
@@ -6,14 +6,17 @@ export default class Find extends BaseCommand<typeof Find> {
|
|
|
6
6
|
static flags: {
|
|
7
7
|
root: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
8
|
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
|
-
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
9
|
application: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
10
|
version: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
11
|
output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
13
12
|
sudo: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
14
13
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
14
|
+
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
15
|
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
16
|
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
rainbowAuthToken: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
|
+
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
|
+
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
20
|
};
|
|
18
21
|
queryResources(flags: {
|
|
19
22
|
output: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find.d.ts","sourceRoot":"","sources":["../../../src/commands/build/find.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,WAAW,CAAC,OAAO,IAAI,CAAC;IACxD,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAgC;IAElD,MAAM,CAAC,QAAQ,WAGb;IAEF,MAAM,CAAC,KAAK
|
|
1
|
+
{"version":3,"file":"find.d.ts","sourceRoot":"","sources":["../../../src/commands/build/find.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,WAAW,CAAC,OAAO,IAAI,CAAC;IACxD,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAgC;IAElD,MAAM,CAAC,QAAQ,WAGb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;;;;MAsCV;IAEI,cAAc,CAAC,KAAK,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,kBAAkB,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE;IAgD5G,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAO3B"}
|
|
@@ -9,6 +9,7 @@ export default class Find extends BaseCommand {
|
|
|
9
9
|
`,
|
|
10
10
|
];
|
|
11
11
|
static flags = {
|
|
12
|
+
...BaseCommand.HIDDEN_FLAGS,
|
|
12
13
|
root: Flags.string({ char: 'r', description: 'root directory', required: false, default: process.cwd() }),
|
|
13
14
|
manifest: Flags.string({
|
|
14
15
|
char: 'm',
|
|
@@ -16,13 +17,6 @@ export default class Find extends BaseCommand {
|
|
|
16
17
|
required: false,
|
|
17
18
|
default: 'raindrop.manifest',
|
|
18
19
|
}),
|
|
19
|
-
config: Flags.string({
|
|
20
|
-
char: 'c',
|
|
21
|
-
description: 'config file',
|
|
22
|
-
required: false,
|
|
23
|
-
hidden: true,
|
|
24
|
-
default: '.raindrop/config.json',
|
|
25
|
-
}),
|
|
26
20
|
application: Flags.string({
|
|
27
21
|
char: 'a',
|
|
28
22
|
description: 'application',
|
|
@@ -52,16 +46,6 @@ export default class Find extends BaseCommand {
|
|
|
52
46
|
required: false,
|
|
53
47
|
hidden: true,
|
|
54
48
|
}),
|
|
55
|
-
rainbowAuthService: Flags.string({
|
|
56
|
-
default: 'https://liquidmetal.run/api/connect',
|
|
57
|
-
hidden: true,
|
|
58
|
-
env: 'LIQUIDMETAL_RAINBOW_AUTH_SERVICE',
|
|
59
|
-
}),
|
|
60
|
-
raindropCatalogService: Flags.string({
|
|
61
|
-
env: 'RAINDROP_CATALOG_SERVICE',
|
|
62
|
-
description: 'URL of the catalog service',
|
|
63
|
-
hidden: true,
|
|
64
|
-
}),
|
|
65
49
|
};
|
|
66
50
|
async queryResources(flags) {
|
|
67
51
|
if (!flags.version) {
|
|
@@ -93,14 +77,7 @@ export default class Find extends BaseCommand {
|
|
|
93
77
|
return acc;
|
|
94
78
|
},
|
|
95
79
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
96
|
-
{}), [
|
|
97
|
-
'name',
|
|
98
|
-
'resourceId',
|
|
99
|
-
'applicationName',
|
|
100
|
-
'applicationVersionId',
|
|
101
|
-
'type',
|
|
102
|
-
'attributes',
|
|
103
|
-
]);
|
|
80
|
+
{}), ['name', 'resourceId', 'applicationName', 'applicationVersionId', 'type', 'attributes']);
|
|
104
81
|
}
|
|
105
82
|
else if (flags.output === 'json') {
|
|
106
83
|
this.log(JSON.stringify(resp, null, 2));
|
|
@@ -17,8 +17,12 @@ export default class List extends BaseCommand<typeof List> {
|
|
|
17
17
|
output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
18
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
19
|
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
20
|
+
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
20
21
|
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
21
22
|
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
23
|
+
rainbowAuthToken: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
24
|
+
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
25
|
+
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
22
26
|
};
|
|
23
27
|
buildVersionTree(applications: ApplicationsResponse_Application[]): {
|
|
24
28
|
rootNodes: VersionNode[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/commands/build/list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,EAAE,SAAS,EAAE,MAAM,yDAAyD,CAAC;AAEtH,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGpD,UAAU,WAAW;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,WAAW,EAAE,gCAAgC,CAAC;IAC9C,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CASzC,CAAC;AAEX,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,WAAW,CAAC,OAAO,IAAI,CAAC;IACxD,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAqC;IAEvD,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/commands/build/list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,EAAE,SAAS,EAAE,MAAM,yDAAyD,CAAC;AAEtH,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGpD,UAAU,WAAW;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,WAAW,EAAE,gCAAgC,CAAC;IAC9C,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CASzC,CAAC;AAEX,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,WAAW,CAAC,OAAO,IAAI,CAAC;IACxD,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAqC;IAEvD,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;MAsBV;IAEF,gBAAgB,CAAC,YAAY,EAAE,gCAAgC,EAAE;;;;IAkCjE,iBAAiB,CAAC,YAAY,EAAE,gCAAgC,EAAE;IAoH5D,gBAAgB;IAwChB,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAG3B"}
|
|
@@ -20,6 +20,7 @@ List Raindrop catalog resources.
|
|
|
20
20
|
`,
|
|
21
21
|
];
|
|
22
22
|
static flags = {
|
|
23
|
+
...BaseCommand.HIDDEN_FLAGS,
|
|
23
24
|
all: Flags.boolean({ char: 'a', description: 'show deleted resources', default: false }),
|
|
24
25
|
output: Flags.string({
|
|
25
26
|
char: 'o',
|
|
@@ -40,16 +41,6 @@ List Raindrop catalog resources.
|
|
|
40
41
|
default: 'raindrop.manifest',
|
|
41
42
|
hidden: true,
|
|
42
43
|
}),
|
|
43
|
-
rainbowAuthService: Flags.string({
|
|
44
|
-
default: 'https://liquidmetal.run/api/connect',
|
|
45
|
-
hidden: true,
|
|
46
|
-
env: 'LIQUIDMETAL_RAINBOW_AUTH_SERVICE',
|
|
47
|
-
}),
|
|
48
|
-
raindropCatalogService: Flags.string({
|
|
49
|
-
env: 'RAINDROP_CATALOG_SERVICE',
|
|
50
|
-
description: 'URL of the catalog service',
|
|
51
|
-
hidden: true,
|
|
52
|
-
}),
|
|
53
44
|
};
|
|
54
45
|
// Build a version tree from applications
|
|
55
46
|
buildVersionTree(applications) {
|
|
@@ -58,13 +49,13 @@ List Raindrop catalog resources.
|
|
|
58
49
|
// Root nodes (those with no previous version)
|
|
59
50
|
const rootNodes = [];
|
|
60
51
|
// First pass: create nodes for all versions
|
|
61
|
-
applications.forEach(app => {
|
|
52
|
+
applications.forEach((app) => {
|
|
62
53
|
const node = {
|
|
63
54
|
versionId: app.versionId,
|
|
64
55
|
previousVersionId: app.previousVersionId || null,
|
|
65
56
|
application: app,
|
|
66
57
|
children: [],
|
|
67
|
-
branch: app.branch
|
|
58
|
+
branch: app.branch,
|
|
68
59
|
};
|
|
69
60
|
nodesMap.set(app.versionId, node);
|
|
70
61
|
});
|
|
@@ -84,7 +75,7 @@ List Raindrop catalog resources.
|
|
|
84
75
|
// Render the version tree in git-log style with branch lines
|
|
85
76
|
renderGitLogStyle(applications) {
|
|
86
77
|
// Build the version tree first
|
|
87
|
-
const { rootNodes
|
|
78
|
+
const { rootNodes } = this.buildVersionTree(applications);
|
|
88
79
|
// Track columns for each branch in the graph
|
|
89
80
|
const columnMap = new Map();
|
|
90
81
|
let maxColumn = 0;
|
|
@@ -101,21 +92,21 @@ List Raindrop catalog resources.
|
|
|
101
92
|
columnMap.set(node.versionId, maxColumn++);
|
|
102
93
|
}
|
|
103
94
|
// Recursively assign columns to children
|
|
104
|
-
node.children.forEach(child => {
|
|
95
|
+
node.children.forEach((child) => {
|
|
105
96
|
assignColumns(child, columnMap.get(node.versionId));
|
|
106
97
|
});
|
|
107
98
|
};
|
|
108
99
|
// Assign columns to all nodes starting from roots
|
|
109
|
-
rootNodes.forEach(root => assignColumns(root));
|
|
100
|
+
rootNodes.forEach((root) => assignColumns(root));
|
|
110
101
|
// Generate the graph output
|
|
111
102
|
const result = [];
|
|
112
103
|
// Flatten tree for display in chronological order
|
|
113
104
|
const flattenedNodes = [];
|
|
114
105
|
const flatten = (node) => {
|
|
115
106
|
flattenedNodes.push(node);
|
|
116
|
-
node.children.forEach(child => flatten(child));
|
|
107
|
+
node.children.forEach((child) => flatten(child));
|
|
117
108
|
};
|
|
118
|
-
rootNodes.forEach(root => flatten(root));
|
|
109
|
+
rootNodes.forEach((root) => flatten(root));
|
|
119
110
|
// Sort flattened nodes by timestamp (newest first)
|
|
120
111
|
flattenedNodes.sort((a, b) => {
|
|
121
112
|
const aTime = a.application.createdAt?.toDate().getTime() || 0;
|
|
@@ -142,7 +133,7 @@ List Raindrop catalog resources.
|
|
|
142
133
|
minute: 'numeric',
|
|
143
134
|
second: 'numeric',
|
|
144
135
|
hour12: false,
|
|
145
|
-
timeZoneName: 'short'
|
|
136
|
+
timeZoneName: 'short',
|
|
146
137
|
});
|
|
147
138
|
// Create graph line with asterisk at current position
|
|
148
139
|
let graphLine = '';
|
|
@@ -185,6 +176,7 @@ List Raindrop catalog resources.
|
|
|
185
176
|
async listApplications() {
|
|
186
177
|
const { client: catalogService, organizationId: defaultOrganizationId, userId } = await this.catalogService();
|
|
187
178
|
const organizationId = this.flags.impersonate ?? defaultOrganizationId;
|
|
179
|
+
this.log(`Listing applications for organization ${organizationId}`);
|
|
188
180
|
const resp = await catalogService.applications({
|
|
189
181
|
userId,
|
|
190
182
|
organizationId,
|
|
@@ -7,10 +7,13 @@ export default class Sandbox extends BaseCommand<typeof Sandbox> {
|
|
|
7
7
|
static examples: string[];
|
|
8
8
|
static flags: {
|
|
9
9
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
|
+
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
|
+
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
12
|
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
13
|
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
+
rainbowAuthToken: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
14
17
|
};
|
|
15
18
|
run(): Promise<void>;
|
|
16
19
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../../../src/commands/build/sandbox.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,WAAW,CAAC,OAAO,OAAO,CAAC;IAC9D,MAAM,CAAC,IAAI;;MAET;IACF,MAAM,CAAC,WAAW,SAAyD;IAE3E,MAAM,CAAC,QAAQ,WAGb;IAEF,MAAM,CAAC,KAAK
|
|
1
|
+
{"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../../../src/commands/build/sandbox.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,WAAW,CAAC,OAAO,OAAO,CAAC;IAC9D,MAAM,CAAC,IAAI;;MAET;IACF,MAAM,CAAC,WAAW,SAAyD;IAE3E,MAAM,CAAC,QAAQ,WAGb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;MASV;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAuB3B"}
|
|
@@ -11,26 +11,13 @@ export default class Sandbox extends BaseCommand {
|
|
|
11
11
|
`,
|
|
12
12
|
];
|
|
13
13
|
static flags = {
|
|
14
|
+
...BaseCommand.HIDDEN_FLAGS,
|
|
14
15
|
impersonate: Flags.string({
|
|
15
16
|
char: 'i',
|
|
16
17
|
description: 'impersonate organization',
|
|
17
18
|
required: false,
|
|
18
19
|
hidden: true,
|
|
19
20
|
}),
|
|
20
|
-
rainbowAuthService: Flags.string({
|
|
21
|
-
default: 'https://liquidmetal.run/api/connect',
|
|
22
|
-
hidden: true,
|
|
23
|
-
env: 'LIQUIDMETAL_RAINBOW_AUTH_SERVICE',
|
|
24
|
-
}),
|
|
25
|
-
raindropCatalogService: Flags.string({
|
|
26
|
-
env: 'RAINDROP_CATALOG_SERVICE',
|
|
27
|
-
description: 'URL of the catalog service',
|
|
28
|
-
hidden: true,
|
|
29
|
-
}),
|
|
30
|
-
config: Flags.string({
|
|
31
|
-
default: '.raindrop/config.json',
|
|
32
|
-
hidden: true,
|
|
33
|
-
}),
|
|
34
21
|
manifest: Flags.string({ default: 'raindrop.manifest', description: 'project manifest' }),
|
|
35
22
|
};
|
|
36
23
|
async run() {
|
|
@@ -6,12 +6,15 @@ export default class Start extends BaseCommand<typeof Start> {
|
|
|
6
6
|
static flags: {
|
|
7
7
|
root: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
8
|
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
|
-
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
9
|
application: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
10
|
version: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
11
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
|
+
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
13
13
|
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
14
14
|
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
rainbowAuthToken: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
18
|
};
|
|
16
19
|
run(): Promise<void>;
|
|
17
20
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../../src/commands/build/start.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,WAAW,CAAC,OAAO,KAAK,CAAC;IAC1D,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAkC;IAEpD,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK
|
|
1
|
+
{"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../../src/commands/build/start.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,WAAW,CAAC,OAAO,KAAK,CAAC;IAC1D,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAkC;IAEpD,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;;MAyBV;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CA2B3B"}
|
|
@@ -10,6 +10,7 @@ Start a Raindrop application.
|
|
|
10
10
|
`,
|
|
11
11
|
];
|
|
12
12
|
static flags = {
|
|
13
|
+
...BaseCommand.HIDDEN_FLAGS,
|
|
13
14
|
root: Flags.string({ char: 'r', description: 'root directory', required: false, default: process.cwd() }),
|
|
14
15
|
manifest: Flags.string({
|
|
15
16
|
char: 'm',
|
|
@@ -17,13 +18,6 @@ Start a Raindrop application.
|
|
|
17
18
|
required: false,
|
|
18
19
|
default: 'raindrop.manifest',
|
|
19
20
|
}),
|
|
20
|
-
config: Flags.string({
|
|
21
|
-
char: 'c',
|
|
22
|
-
description: 'config file',
|
|
23
|
-
required: false,
|
|
24
|
-
hidden: true,
|
|
25
|
-
default: '.raindrop/config.json',
|
|
26
|
-
}),
|
|
27
21
|
application: Flags.string({
|
|
28
22
|
char: 'a',
|
|
29
23
|
description: 'application to start',
|
|
@@ -40,16 +34,6 @@ Start a Raindrop application.
|
|
|
40
34
|
required: false,
|
|
41
35
|
hidden: true,
|
|
42
36
|
}),
|
|
43
|
-
rainbowAuthService: Flags.string({
|
|
44
|
-
default: 'https://liquidmetal.run/api/connect',
|
|
45
|
-
hidden: true,
|
|
46
|
-
env: 'LIQUIDMETAL_RAINBOW_AUTH_SERVICE',
|
|
47
|
-
}),
|
|
48
|
-
raindropCatalogService: Flags.string({
|
|
49
|
-
env: 'RAINDROP_CATALOG_SERVICE',
|
|
50
|
-
description: 'URL of the catalog service',
|
|
51
|
-
hidden: true,
|
|
52
|
-
}),
|
|
53
37
|
};
|
|
54
38
|
async run() {
|
|
55
39
|
const { client: catalogService, userId, organizationId: defaultOrganizationId } = await this.catalogService();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UnitState } from '@liquidmetal-ai/drizzle/liquidmetal/v1alpha1/catalog_pb';
|
|
1
|
+
import { StatusResponse, UnitState } from '@liquidmetal-ai/drizzle/liquidmetal/v1alpha1/catalog_pb';
|
|
2
2
|
import { BaseCommand } from '../../base-command.js';
|
|
3
3
|
export declare const statusString: Record<UnitState, string>;
|
|
4
4
|
export default class Status extends BaseCommand<typeof Status> {
|
|
@@ -8,15 +8,20 @@ export default class Status extends BaseCommand<typeof Status> {
|
|
|
8
8
|
static flags: {
|
|
9
9
|
root: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
10
|
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
|
-
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
11
|
application: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
13
12
|
version: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
14
13
|
output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
14
|
sudo: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
16
15
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
config: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
17
|
rainbowAuthService: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
18
|
raindropCatalogService: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
|
+
rainbowAuthToken: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
20
|
+
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
21
|
+
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
22
|
};
|
|
20
23
|
run(): Promise<void>;
|
|
24
|
+
linesLastRendered: number;
|
|
25
|
+
renderLive(status: StatusResponse): Promise<void>;
|
|
21
26
|
}
|
|
22
27
|
//# sourceMappingURL=status.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../../src/commands/build/status.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,yDAAyD,CAAC;
|
|
1
|
+
{"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../../src/commands/build/status.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,yDAAyD,CAAC;AAIpG,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CASzC,CAAC;AAEX,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,WAAW,CAAC,OAAO,MAAM,CAAC;IAC5D,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAmD;IAErE,MAAM,CAAC,QAAQ,WAGb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;;;;MAsCV;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;IAiE1B,iBAAiB,SAAK;IAEhB,UAAU,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;CAyBxD"}
|