@superblocksteam/cli 2.0.3-next.197 → 2.0.3-next.199
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 +1 -1
- package/dist/index.js +6 -103
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ $ npm install -g @superblocksteam/cli
|
|
|
14
14
|
$ superblocks COMMAND
|
|
15
15
|
running command...
|
|
16
16
|
$ superblocks (--version)
|
|
17
|
-
@superblocksteam/cli/2.0.3-next.
|
|
17
|
+
@superblocksteam/cli/2.0.3-next.199 linux-x64 node-v20.19.0
|
|
18
18
|
$ superblocks --help [COMMAND]
|
|
19
19
|
USAGE
|
|
20
20
|
$ superblocks COMMAND
|
package/dist/index.js
CHANGED
|
@@ -296195,7 +296195,7 @@ var getIntegrationMetadata = (integration) => {
|
|
|
296195
296195
|
}
|
|
296196
296196
|
};
|
|
296197
296197
|
}
|
|
296198
|
-
if (integration.name
|
|
296198
|
+
if (integration.name.includes("InternalAPICustomers")) {
|
|
296199
296199
|
return {
|
|
296200
296200
|
openApiSpec: {
|
|
296201
296201
|
openapi: "3.0.3",
|
|
@@ -296287,109 +296287,12 @@ var getIntegrationMetadata = (integration) => {
|
|
|
296287
296287
|
}
|
|
296288
296288
|
}
|
|
296289
296289
|
}
|
|
296290
|
-
},
|
|
296291
|
-
"/getCustomer": {
|
|
296292
|
-
get: {
|
|
296293
|
-
tags: ["Customers"],
|
|
296294
|
-
summary: "Get a single customer by ID",
|
|
296295
|
-
parameters: [
|
|
296296
|
-
{
|
|
296297
|
-
name: "id",
|
|
296298
|
-
in: "query",
|
|
296299
|
-
required: true,
|
|
296300
|
-
schema: {
|
|
296301
|
-
type: "integer"
|
|
296302
|
-
}
|
|
296303
|
-
}
|
|
296304
|
-
],
|
|
296305
|
-
responses: {
|
|
296306
|
-
"200": {
|
|
296307
|
-
description: "A single customer",
|
|
296308
|
-
content: {
|
|
296309
|
-
"application/json": {
|
|
296310
|
-
schema: {
|
|
296311
|
-
type: "object",
|
|
296312
|
-
properties: {
|
|
296313
|
-
id: {
|
|
296314
|
-
type: "integer"
|
|
296315
|
-
},
|
|
296316
|
-
full_name: {
|
|
296317
|
-
type: "string"
|
|
296318
|
-
},
|
|
296319
|
-
email: {
|
|
296320
|
-
type: "string",
|
|
296321
|
-
format: "email"
|
|
296322
|
-
},
|
|
296323
|
-
loyalty_status: {
|
|
296324
|
-
type: "string",
|
|
296325
|
-
enum: ["Bronze", "Silver", "Gold", "Platinum"]
|
|
296326
|
-
}
|
|
296327
|
-
}
|
|
296328
|
-
}
|
|
296329
|
-
}
|
|
296330
|
-
}
|
|
296331
|
-
}
|
|
296332
|
-
}
|
|
296333
|
-
}
|
|
296334
|
-
},
|
|
296335
|
-
"/searchCustomers": {
|
|
296336
|
-
post: {
|
|
296337
|
-
tags: ["Customers"],
|
|
296338
|
-
summary: "Search for customers by name or email",
|
|
296339
|
-
requestBody: {
|
|
296340
|
-
required: true,
|
|
296341
|
-
content: {
|
|
296342
|
-
"application/json": {
|
|
296343
|
-
schema: {
|
|
296344
|
-
type: "object",
|
|
296345
|
-
properties: {
|
|
296346
|
-
query: {
|
|
296347
|
-
type: "string",
|
|
296348
|
-
description: "Name or email substring to search"
|
|
296349
|
-
}
|
|
296350
|
-
}
|
|
296351
|
-
}
|
|
296352
|
-
}
|
|
296353
|
-
}
|
|
296354
|
-
},
|
|
296355
|
-
responses: {
|
|
296356
|
-
"200": {
|
|
296357
|
-
description: "List of matching customers",
|
|
296358
|
-
content: {
|
|
296359
|
-
"application/json": {
|
|
296360
|
-
schema: {
|
|
296361
|
-
type: "array",
|
|
296362
|
-
items: {
|
|
296363
|
-
type: "object",
|
|
296364
|
-
properties: {
|
|
296365
|
-
id: {
|
|
296366
|
-
type: "integer"
|
|
296367
|
-
},
|
|
296368
|
-
full_name: {
|
|
296369
|
-
type: "string"
|
|
296370
|
-
},
|
|
296371
|
-
email: {
|
|
296372
|
-
type: "string",
|
|
296373
|
-
format: "email"
|
|
296374
|
-
},
|
|
296375
|
-
loyalty_status: {
|
|
296376
|
-
type: "string",
|
|
296377
|
-
enum: ["Bronze", "Silver", "Gold", "Platinum"]
|
|
296378
|
-
}
|
|
296379
|
-
}
|
|
296380
|
-
}
|
|
296381
|
-
}
|
|
296382
|
-
}
|
|
296383
|
-
}
|
|
296384
|
-
}
|
|
296385
|
-
}
|
|
296386
|
-
}
|
|
296387
296290
|
}
|
|
296388
296291
|
}
|
|
296389
296292
|
}
|
|
296390
296293
|
};
|
|
296391
296294
|
}
|
|
296392
|
-
if (integration.name
|
|
296295
|
+
if (integration.name.includes("InternalLaunchAPI")) {
|
|
296393
296296
|
return {
|
|
296394
296297
|
openApiSpec: {
|
|
296395
296298
|
openapi: "3.0.3",
|
|
@@ -322021,7 +321924,7 @@ var import_util28 = __toESM(require_dist3(), 1);
|
|
|
322021
321924
|
// ../sdk/package.json
|
|
322022
321925
|
var package_default = {
|
|
322023
321926
|
name: "@superblocksteam/sdk",
|
|
322024
|
-
version: "2.0.3-next.
|
|
321927
|
+
version: "2.0.3-next.199",
|
|
322025
321928
|
type: "module",
|
|
322026
321929
|
description: "Superblocks JS SDK",
|
|
322027
321930
|
homepage: "https://www.superblocks.com",
|
|
@@ -322063,8 +321966,8 @@ var package_default = {
|
|
|
322063
321966
|
"@rollup/wasm-node": "^4.35.0",
|
|
322064
321967
|
"@superblocksteam/bucketeer-sdk": "0.5.0",
|
|
322065
321968
|
"@superblocksteam/shared": "0.9160.0",
|
|
322066
|
-
"@superblocksteam/util": "2.0.3-next.
|
|
322067
|
-
"@superblocksteam/vite-plugin-file-sync": "2.0.3-next.
|
|
321969
|
+
"@superblocksteam/util": "2.0.3-next.199",
|
|
321970
|
+
"@superblocksteam/vite-plugin-file-sync": "2.0.3-next.199",
|
|
322068
321971
|
"@vitejs/plugin-react": "^4.3.4",
|
|
322069
321972
|
axios: "^1.4.0",
|
|
322070
321973
|
chokidar: "^4.0.3",
|
|
@@ -329038,7 +328941,7 @@ async function startVite({ app, httpServer: httpServer2, root: root2, mode, port
|
|
|
329038
328941
|
};
|
|
329039
328942
|
const isCustomBuildEnabled2 = await isCustomComponentsEnabled();
|
|
329040
328943
|
const customFolder = path34.join(root2, "custom");
|
|
329041
|
-
const cdnUrl = "https://assets-cdn.superblocks.com/library/2.0.3-next.
|
|
328944
|
+
const cdnUrl = "https://assets-cdn.superblocks.com/library/2.0.3-next.199";
|
|
329042
328945
|
const env3 = loadEnv(mode, root2, "");
|
|
329043
328946
|
const hmrPort = await getFreePort();
|
|
329044
328947
|
const hmrOptions = {
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/cli",
|
|
3
|
-
"version": "2.0.3-next.
|
|
3
|
+
"version": "2.0.3-next.199",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official Superblocks CLI",
|
|
6
6
|
"homepage": "https://www.superblocks.com",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@eslint/js": "^9.16.0",
|
|
44
44
|
"@oclif/test": "^4.1.11",
|
|
45
|
-
"@superblocksteam/sdk": "2.0.3-next.
|
|
45
|
+
"@superblocksteam/sdk": "2.0.3-next.199",
|
|
46
46
|
"@superblocksteam/shared": "0.9160.0",
|
|
47
|
-
"@superblocksteam/util": "2.0.3-next.
|
|
47
|
+
"@superblocksteam/util": "2.0.3-next.199",
|
|
48
48
|
"@types/babel__core": "^7.20.0",
|
|
49
49
|
"@types/chai": "^4",
|
|
50
50
|
"@types/fs-extra": "^11.0.1",
|