@meshery/schemas 1.3.7 → 1.3.9
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/cloudApi.d.mts +4227 -1760
- package/dist/cloudApi.d.ts +4227 -1760
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta1/feature/Feature.d.ts +207 -83
- package/dist/constructs/v1beta1/feature/FeatureSchema.js +1 -1
- package/dist/constructs/v1beta1/feature/FeatureSchema.mjs +1 -1
- package/dist/constructs/v1beta3/connection/Connection.d.ts +4013 -16
- package/dist/constructs/v1beta3/connection/ConnectionSchema.js +25 -1
- package/dist/constructs/v1beta3/connection/ConnectionSchema.mjs +25 -1
- package/dist/index.d.mts +123 -42
- package/dist/index.d.ts +123 -42
- package/dist/mesheryApi.d.mts +3209 -759
- package/dist/mesheryApi.d.ts +3209 -759
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -13314,106 +13314,187 @@ interface components$n {
|
|
|
13314
13314
|
|
|
13315
13315
|
interface components$m {
|
|
13316
13316
|
schemas: {
|
|
13317
|
-
|
|
13317
|
+
/** @description A feature is a quantified entitlement granted to an organization through its subscription plan, such as the number of components allowed in a design. */
|
|
13318
|
+
Feature: {
|
|
13318
13319
|
/**
|
|
13319
13320
|
* Format: uuid
|
|
13320
|
-
* @description
|
|
13321
|
+
* @description Unique identifier for the feature.
|
|
13321
13322
|
*/
|
|
13322
13323
|
id: string;
|
|
13323
13324
|
/**
|
|
13324
13325
|
* Format: uuid
|
|
13325
|
-
* @description
|
|
13326
|
+
* @description Identifier of the plan granting this feature.
|
|
13326
13327
|
*/
|
|
13327
13328
|
plan_id: string;
|
|
13329
|
+
/** @description The plan granting this feature. Populated only when the association is explicitly loaded. */
|
|
13328
13330
|
plan?: {
|
|
13329
13331
|
/**
|
|
13330
13332
|
* Format: uuid
|
|
13331
|
-
* @description
|
|
13333
|
+
* @description Unique identifier for the plan.
|
|
13332
13334
|
*/
|
|
13333
13335
|
id: string;
|
|
13334
13336
|
/**
|
|
13335
|
-
* @description
|
|
13337
|
+
* @description Display name of the plan.
|
|
13336
13338
|
* @enum {string}
|
|
13337
13339
|
*/
|
|
13338
13340
|
name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
|
|
13339
|
-
/**
|
|
13340
|
-
|
|
13341
|
-
|
|
13341
|
+
/**
|
|
13342
|
+
* @description Billing cadence for the plan (monthly, annually, or none).
|
|
13343
|
+
* @enum {string}
|
|
13344
|
+
*/
|
|
13345
|
+
cadence: "none" | "monthly" | "annually";
|
|
13346
|
+
/**
|
|
13347
|
+
* @description Unit of consumption this plan charges against (e.g. user).
|
|
13348
|
+
* @enum {string}
|
|
13349
|
+
*/
|
|
13342
13350
|
unit: "user" | "free";
|
|
13343
|
-
/** @description Minimum number of units required for the plan */
|
|
13344
|
-
|
|
13345
|
-
/** @description Price per unit of the plan */
|
|
13346
|
-
|
|
13347
|
-
/**
|
|
13351
|
+
/** @description Minimum number of units required for the plan. */
|
|
13352
|
+
minimumUnits: number;
|
|
13353
|
+
/** @description Price per unit of the plan. */
|
|
13354
|
+
pricePerUnit: number;
|
|
13355
|
+
/**
|
|
13356
|
+
* @description Currency in which the plan is priced.
|
|
13357
|
+
* @enum {string}
|
|
13358
|
+
*/
|
|
13348
13359
|
currency: "usd";
|
|
13349
13360
|
};
|
|
13350
13361
|
/**
|
|
13351
|
-
* @description
|
|
13362
|
+
* @description Name of the entitled feature.
|
|
13352
13363
|
* @enum {string}
|
|
13353
13364
|
*/
|
|
13354
13365
|
name: "ComponentsInDesign" | "RelationshipsInDesign" | "DesignsInWorkspace" | "WorkspacesInOrganization" | "ImageSizeInDesign" | "SizePerDesign";
|
|
13355
|
-
/**
|
|
13366
|
+
/**
|
|
13367
|
+
* Format: double
|
|
13368
|
+
* @description Quantity of the feature granted by the plan. The sentinel value 999999999999 denotes unlimited.
|
|
13369
|
+
*/
|
|
13356
13370
|
quantity: number;
|
|
13357
|
-
/**
|
|
13358
|
-
|
|
13359
|
-
|
|
13360
|
-
|
|
13361
|
-
|
|
13371
|
+
/**
|
|
13372
|
+
* Format: date-time
|
|
13373
|
+
* @description Timestamp when the resource was created.
|
|
13374
|
+
*/
|
|
13375
|
+
created_at: string;
|
|
13376
|
+
/**
|
|
13377
|
+
* Format: date-time
|
|
13378
|
+
* @description Timestamp when the resource was updated.
|
|
13379
|
+
*/
|
|
13380
|
+
updated_at: string;
|
|
13381
|
+
};
|
|
13362
13382
|
/**
|
|
13363
|
-
* @description Enumeration of
|
|
13383
|
+
* @description Enumeration of feature names that can be granted by a plan.
|
|
13364
13384
|
* @enum {string}
|
|
13365
13385
|
*/
|
|
13366
13386
|
FeatureName: "ComponentsInDesign" | "RelationshipsInDesign" | "DesignsInWorkspace" | "WorkspacesInOrganization" | "ImageSizeInDesign" | "SizePerDesign";
|
|
13367
|
-
|
|
13387
|
+
/** @description List of features. */
|
|
13388
|
+
FeaturesPage: {
|
|
13368
13389
|
/**
|
|
13369
13390
|
* Format: uuid
|
|
13370
|
-
* @description
|
|
13391
|
+
* @description Unique identifier for the feature.
|
|
13371
13392
|
*/
|
|
13372
13393
|
id: string;
|
|
13373
13394
|
/**
|
|
13374
13395
|
* Format: uuid
|
|
13375
|
-
* @description
|
|
13396
|
+
* @description Identifier of the plan granting this feature.
|
|
13376
13397
|
*/
|
|
13377
13398
|
plan_id: string;
|
|
13399
|
+
/** @description The plan granting this feature. Populated only when the association is explicitly loaded. */
|
|
13378
13400
|
plan?: {
|
|
13379
13401
|
/**
|
|
13380
13402
|
* Format: uuid
|
|
13381
|
-
* @description
|
|
13403
|
+
* @description Unique identifier for the plan.
|
|
13382
13404
|
*/
|
|
13383
13405
|
id: string;
|
|
13384
13406
|
/**
|
|
13385
|
-
* @description
|
|
13407
|
+
* @description Display name of the plan.
|
|
13386
13408
|
* @enum {string}
|
|
13387
13409
|
*/
|
|
13388
13410
|
name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
|
|
13389
|
-
/**
|
|
13390
|
-
|
|
13391
|
-
|
|
13411
|
+
/**
|
|
13412
|
+
* @description Billing cadence for the plan (monthly, annually, or none).
|
|
13413
|
+
* @enum {string}
|
|
13414
|
+
*/
|
|
13415
|
+
cadence: "none" | "monthly" | "annually";
|
|
13416
|
+
/**
|
|
13417
|
+
* @description Unit of consumption this plan charges against (e.g. user).
|
|
13418
|
+
* @enum {string}
|
|
13419
|
+
*/
|
|
13392
13420
|
unit: "user" | "free";
|
|
13393
|
-
/** @description Minimum number of units required for the plan */
|
|
13394
|
-
|
|
13395
|
-
/** @description Price per unit of the plan */
|
|
13396
|
-
|
|
13397
|
-
/**
|
|
13421
|
+
/** @description Minimum number of units required for the plan. */
|
|
13422
|
+
minimumUnits: number;
|
|
13423
|
+
/** @description Price per unit of the plan. */
|
|
13424
|
+
pricePerUnit: number;
|
|
13425
|
+
/**
|
|
13426
|
+
* @description Currency in which the plan is priced.
|
|
13427
|
+
* @enum {string}
|
|
13428
|
+
*/
|
|
13398
13429
|
currency: "usd";
|
|
13399
13430
|
};
|
|
13400
13431
|
/**
|
|
13401
|
-
* @description
|
|
13432
|
+
* @description Name of the entitled feature.
|
|
13402
13433
|
* @enum {string}
|
|
13403
13434
|
*/
|
|
13404
13435
|
name: "ComponentsInDesign" | "RelationshipsInDesign" | "DesignsInWorkspace" | "WorkspacesInOrganization" | "ImageSizeInDesign" | "SizePerDesign";
|
|
13405
|
-
/**
|
|
13436
|
+
/**
|
|
13437
|
+
* Format: double
|
|
13438
|
+
* @description Quantity of the feature granted by the plan. The sentinel value 999999999999 denotes unlimited.
|
|
13439
|
+
*/
|
|
13406
13440
|
quantity: number;
|
|
13407
|
-
/**
|
|
13408
|
-
|
|
13409
|
-
|
|
13410
|
-
|
|
13441
|
+
/**
|
|
13442
|
+
* Format: date-time
|
|
13443
|
+
* @description Timestamp when the resource was created.
|
|
13444
|
+
*/
|
|
13445
|
+
created_at: string;
|
|
13446
|
+
/**
|
|
13447
|
+
* Format: date-time
|
|
13448
|
+
* @description Timestamp when the resource was updated.
|
|
13449
|
+
*/
|
|
13450
|
+
updated_at: string;
|
|
13451
|
+
}[];
|
|
13452
|
+
};
|
|
13453
|
+
responses: {
|
|
13454
|
+
/** @description Invalid request body or request param */
|
|
13455
|
+
400: {
|
|
13456
|
+
headers: {
|
|
13457
|
+
[name: string]: unknown;
|
|
13458
|
+
};
|
|
13459
|
+
content: {
|
|
13460
|
+
"text/plain": string;
|
|
13461
|
+
};
|
|
13462
|
+
};
|
|
13463
|
+
/** @description Expired JWT token used or insufficient privilege */
|
|
13464
|
+
401: {
|
|
13465
|
+
headers: {
|
|
13466
|
+
[name: string]: unknown;
|
|
13467
|
+
};
|
|
13468
|
+
content: {
|
|
13469
|
+
"text/plain": string;
|
|
13470
|
+
};
|
|
13471
|
+
};
|
|
13472
|
+
/** @description Result not found */
|
|
13473
|
+
404: {
|
|
13474
|
+
headers: {
|
|
13475
|
+
[name: string]: unknown;
|
|
13476
|
+
};
|
|
13477
|
+
content: {
|
|
13478
|
+
"text/plain": string;
|
|
13479
|
+
};
|
|
13480
|
+
};
|
|
13481
|
+
/** @description Internal server error */
|
|
13482
|
+
500: {
|
|
13483
|
+
headers: {
|
|
13484
|
+
[name: string]: unknown;
|
|
13485
|
+
};
|
|
13486
|
+
content: {
|
|
13487
|
+
"text/plain": string;
|
|
13488
|
+
};
|
|
13411
13489
|
};
|
|
13412
13490
|
};
|
|
13413
|
-
responses: never;
|
|
13414
13491
|
parameters: {
|
|
13415
13492
|
/** @description The ID of the organization */
|
|
13416
|
-
|
|
13493
|
+
orgId: string;
|
|
13494
|
+
/** @description Get responses by page */
|
|
13495
|
+
page: string;
|
|
13496
|
+
/** @description Get responses by pagesize */
|
|
13497
|
+
pagesize: string;
|
|
13417
13498
|
};
|
|
13418
13499
|
requestBodies: never;
|
|
13419
13500
|
headers: never;
|
package/dist/index.d.ts
CHANGED
|
@@ -13314,106 +13314,187 @@ interface components$n {
|
|
|
13314
13314
|
|
|
13315
13315
|
interface components$m {
|
|
13316
13316
|
schemas: {
|
|
13317
|
-
|
|
13317
|
+
/** @description A feature is a quantified entitlement granted to an organization through its subscription plan, such as the number of components allowed in a design. */
|
|
13318
|
+
Feature: {
|
|
13318
13319
|
/**
|
|
13319
13320
|
* Format: uuid
|
|
13320
|
-
* @description
|
|
13321
|
+
* @description Unique identifier for the feature.
|
|
13321
13322
|
*/
|
|
13322
13323
|
id: string;
|
|
13323
13324
|
/**
|
|
13324
13325
|
* Format: uuid
|
|
13325
|
-
* @description
|
|
13326
|
+
* @description Identifier of the plan granting this feature.
|
|
13326
13327
|
*/
|
|
13327
13328
|
plan_id: string;
|
|
13329
|
+
/** @description The plan granting this feature. Populated only when the association is explicitly loaded. */
|
|
13328
13330
|
plan?: {
|
|
13329
13331
|
/**
|
|
13330
13332
|
* Format: uuid
|
|
13331
|
-
* @description
|
|
13333
|
+
* @description Unique identifier for the plan.
|
|
13332
13334
|
*/
|
|
13333
13335
|
id: string;
|
|
13334
13336
|
/**
|
|
13335
|
-
* @description
|
|
13337
|
+
* @description Display name of the plan.
|
|
13336
13338
|
* @enum {string}
|
|
13337
13339
|
*/
|
|
13338
13340
|
name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
|
|
13339
|
-
/**
|
|
13340
|
-
|
|
13341
|
-
|
|
13341
|
+
/**
|
|
13342
|
+
* @description Billing cadence for the plan (monthly, annually, or none).
|
|
13343
|
+
* @enum {string}
|
|
13344
|
+
*/
|
|
13345
|
+
cadence: "none" | "monthly" | "annually";
|
|
13346
|
+
/**
|
|
13347
|
+
* @description Unit of consumption this plan charges against (e.g. user).
|
|
13348
|
+
* @enum {string}
|
|
13349
|
+
*/
|
|
13342
13350
|
unit: "user" | "free";
|
|
13343
|
-
/** @description Minimum number of units required for the plan */
|
|
13344
|
-
|
|
13345
|
-
/** @description Price per unit of the plan */
|
|
13346
|
-
|
|
13347
|
-
/**
|
|
13351
|
+
/** @description Minimum number of units required for the plan. */
|
|
13352
|
+
minimumUnits: number;
|
|
13353
|
+
/** @description Price per unit of the plan. */
|
|
13354
|
+
pricePerUnit: number;
|
|
13355
|
+
/**
|
|
13356
|
+
* @description Currency in which the plan is priced.
|
|
13357
|
+
* @enum {string}
|
|
13358
|
+
*/
|
|
13348
13359
|
currency: "usd";
|
|
13349
13360
|
};
|
|
13350
13361
|
/**
|
|
13351
|
-
* @description
|
|
13362
|
+
* @description Name of the entitled feature.
|
|
13352
13363
|
* @enum {string}
|
|
13353
13364
|
*/
|
|
13354
13365
|
name: "ComponentsInDesign" | "RelationshipsInDesign" | "DesignsInWorkspace" | "WorkspacesInOrganization" | "ImageSizeInDesign" | "SizePerDesign";
|
|
13355
|
-
/**
|
|
13366
|
+
/**
|
|
13367
|
+
* Format: double
|
|
13368
|
+
* @description Quantity of the feature granted by the plan. The sentinel value 999999999999 denotes unlimited.
|
|
13369
|
+
*/
|
|
13356
13370
|
quantity: number;
|
|
13357
|
-
/**
|
|
13358
|
-
|
|
13359
|
-
|
|
13360
|
-
|
|
13361
|
-
|
|
13371
|
+
/**
|
|
13372
|
+
* Format: date-time
|
|
13373
|
+
* @description Timestamp when the resource was created.
|
|
13374
|
+
*/
|
|
13375
|
+
created_at: string;
|
|
13376
|
+
/**
|
|
13377
|
+
* Format: date-time
|
|
13378
|
+
* @description Timestamp when the resource was updated.
|
|
13379
|
+
*/
|
|
13380
|
+
updated_at: string;
|
|
13381
|
+
};
|
|
13362
13382
|
/**
|
|
13363
|
-
* @description Enumeration of
|
|
13383
|
+
* @description Enumeration of feature names that can be granted by a plan.
|
|
13364
13384
|
* @enum {string}
|
|
13365
13385
|
*/
|
|
13366
13386
|
FeatureName: "ComponentsInDesign" | "RelationshipsInDesign" | "DesignsInWorkspace" | "WorkspacesInOrganization" | "ImageSizeInDesign" | "SizePerDesign";
|
|
13367
|
-
|
|
13387
|
+
/** @description List of features. */
|
|
13388
|
+
FeaturesPage: {
|
|
13368
13389
|
/**
|
|
13369
13390
|
* Format: uuid
|
|
13370
|
-
* @description
|
|
13391
|
+
* @description Unique identifier for the feature.
|
|
13371
13392
|
*/
|
|
13372
13393
|
id: string;
|
|
13373
13394
|
/**
|
|
13374
13395
|
* Format: uuid
|
|
13375
|
-
* @description
|
|
13396
|
+
* @description Identifier of the plan granting this feature.
|
|
13376
13397
|
*/
|
|
13377
13398
|
plan_id: string;
|
|
13399
|
+
/** @description The plan granting this feature. Populated only when the association is explicitly loaded. */
|
|
13378
13400
|
plan?: {
|
|
13379
13401
|
/**
|
|
13380
13402
|
* Format: uuid
|
|
13381
|
-
* @description
|
|
13403
|
+
* @description Unique identifier for the plan.
|
|
13382
13404
|
*/
|
|
13383
13405
|
id: string;
|
|
13384
13406
|
/**
|
|
13385
|
-
* @description
|
|
13407
|
+
* @description Display name of the plan.
|
|
13386
13408
|
* @enum {string}
|
|
13387
13409
|
*/
|
|
13388
13410
|
name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
|
|
13389
|
-
/**
|
|
13390
|
-
|
|
13391
|
-
|
|
13411
|
+
/**
|
|
13412
|
+
* @description Billing cadence for the plan (monthly, annually, or none).
|
|
13413
|
+
* @enum {string}
|
|
13414
|
+
*/
|
|
13415
|
+
cadence: "none" | "monthly" | "annually";
|
|
13416
|
+
/**
|
|
13417
|
+
* @description Unit of consumption this plan charges against (e.g. user).
|
|
13418
|
+
* @enum {string}
|
|
13419
|
+
*/
|
|
13392
13420
|
unit: "user" | "free";
|
|
13393
|
-
/** @description Minimum number of units required for the plan */
|
|
13394
|
-
|
|
13395
|
-
/** @description Price per unit of the plan */
|
|
13396
|
-
|
|
13397
|
-
/**
|
|
13421
|
+
/** @description Minimum number of units required for the plan. */
|
|
13422
|
+
minimumUnits: number;
|
|
13423
|
+
/** @description Price per unit of the plan. */
|
|
13424
|
+
pricePerUnit: number;
|
|
13425
|
+
/**
|
|
13426
|
+
* @description Currency in which the plan is priced.
|
|
13427
|
+
* @enum {string}
|
|
13428
|
+
*/
|
|
13398
13429
|
currency: "usd";
|
|
13399
13430
|
};
|
|
13400
13431
|
/**
|
|
13401
|
-
* @description
|
|
13432
|
+
* @description Name of the entitled feature.
|
|
13402
13433
|
* @enum {string}
|
|
13403
13434
|
*/
|
|
13404
13435
|
name: "ComponentsInDesign" | "RelationshipsInDesign" | "DesignsInWorkspace" | "WorkspacesInOrganization" | "ImageSizeInDesign" | "SizePerDesign";
|
|
13405
|
-
/**
|
|
13436
|
+
/**
|
|
13437
|
+
* Format: double
|
|
13438
|
+
* @description Quantity of the feature granted by the plan. The sentinel value 999999999999 denotes unlimited.
|
|
13439
|
+
*/
|
|
13406
13440
|
quantity: number;
|
|
13407
|
-
/**
|
|
13408
|
-
|
|
13409
|
-
|
|
13410
|
-
|
|
13441
|
+
/**
|
|
13442
|
+
* Format: date-time
|
|
13443
|
+
* @description Timestamp when the resource was created.
|
|
13444
|
+
*/
|
|
13445
|
+
created_at: string;
|
|
13446
|
+
/**
|
|
13447
|
+
* Format: date-time
|
|
13448
|
+
* @description Timestamp when the resource was updated.
|
|
13449
|
+
*/
|
|
13450
|
+
updated_at: string;
|
|
13451
|
+
}[];
|
|
13452
|
+
};
|
|
13453
|
+
responses: {
|
|
13454
|
+
/** @description Invalid request body or request param */
|
|
13455
|
+
400: {
|
|
13456
|
+
headers: {
|
|
13457
|
+
[name: string]: unknown;
|
|
13458
|
+
};
|
|
13459
|
+
content: {
|
|
13460
|
+
"text/plain": string;
|
|
13461
|
+
};
|
|
13462
|
+
};
|
|
13463
|
+
/** @description Expired JWT token used or insufficient privilege */
|
|
13464
|
+
401: {
|
|
13465
|
+
headers: {
|
|
13466
|
+
[name: string]: unknown;
|
|
13467
|
+
};
|
|
13468
|
+
content: {
|
|
13469
|
+
"text/plain": string;
|
|
13470
|
+
};
|
|
13471
|
+
};
|
|
13472
|
+
/** @description Result not found */
|
|
13473
|
+
404: {
|
|
13474
|
+
headers: {
|
|
13475
|
+
[name: string]: unknown;
|
|
13476
|
+
};
|
|
13477
|
+
content: {
|
|
13478
|
+
"text/plain": string;
|
|
13479
|
+
};
|
|
13480
|
+
};
|
|
13481
|
+
/** @description Internal server error */
|
|
13482
|
+
500: {
|
|
13483
|
+
headers: {
|
|
13484
|
+
[name: string]: unknown;
|
|
13485
|
+
};
|
|
13486
|
+
content: {
|
|
13487
|
+
"text/plain": string;
|
|
13488
|
+
};
|
|
13411
13489
|
};
|
|
13412
13490
|
};
|
|
13413
|
-
responses: never;
|
|
13414
13491
|
parameters: {
|
|
13415
13492
|
/** @description The ID of the organization */
|
|
13416
|
-
|
|
13493
|
+
orgId: string;
|
|
13494
|
+
/** @description Get responses by page */
|
|
13495
|
+
page: string;
|
|
13496
|
+
/** @description Get responses by pagesize */
|
|
13497
|
+
pagesize: string;
|
|
13417
13498
|
};
|
|
13418
13499
|
requestBodies: never;
|
|
13419
13500
|
headers: never;
|