@mochabug/adaptkit 0.1.0-alpha.16 → 0.1.0-alpha.18
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.
|
@@ -283,9 +283,9 @@ export interface Manifest {
|
|
|
283
283
|
* Restrictions:
|
|
284
284
|
* - Must have between 0 and 10 user secrets, inclusive.
|
|
285
285
|
*
|
|
286
|
-
* @generated from protobuf field: repeated mochabug.adapt.plugins.v1.
|
|
286
|
+
* @generated from protobuf field: repeated mochabug.adapt.plugins.v1.EnvironmentalVariable user_variables = 15;
|
|
287
287
|
*/
|
|
288
|
-
|
|
288
|
+
userVariables: EnvironmentalVariable[];
|
|
289
289
|
/**
|
|
290
290
|
* 'user_mtls' represents the user mTLS (mutual TLS) certificates required by
|
|
291
291
|
* the plugin. The platform ensures secure storage and transmission of
|
|
@@ -312,9 +312,9 @@ export interface Manifest {
|
|
|
312
312
|
* The platform ensures secure storage and transmission of secrets.
|
|
313
313
|
* These variables are set by the owner of the plugin.
|
|
314
314
|
*
|
|
315
|
-
* @generated from protobuf field: repeated mochabug.adapt.plugins.v1.
|
|
315
|
+
* @generated from protobuf field: repeated mochabug.adapt.plugins.v1.EnvironmentalVariable plugin_variables = 18;
|
|
316
316
|
*/
|
|
317
|
-
|
|
317
|
+
pluginVariables: EnvironmentalVariable[];
|
|
318
318
|
/**
|
|
319
319
|
* 'oauth2' represents the OAuth2 services required for the plugin.
|
|
320
320
|
* OAuth2 parameters are specified in the platform, and the service name is
|
|
@@ -479,54 +479,103 @@ export declare enum OAuth2Service_GrantType {
|
|
|
479
479
|
CLIENT_CREDENTIALS = 2
|
|
480
480
|
}
|
|
481
481
|
/**
|
|
482
|
-
*
|
|
483
|
-
* securely by the platform. Plugins should never require secrets themselves to
|
|
484
|
-
* ensure security.
|
|
482
|
+
* A representation of an environmental variable.
|
|
485
483
|
*
|
|
486
|
-
*
|
|
484
|
+
* This message represents an environmental variable used within the hosting platform.
|
|
485
|
+
* Environmental variables are essential for configuring applications and services hosted on the platform.
|
|
486
|
+
* They store values that can be accessed by the application or service during runtime.
|
|
487
|
+
*
|
|
488
|
+
* @generated from protobuf message mochabug.adapt.plugins.v1.EnvironmentalVariable
|
|
487
489
|
*/
|
|
488
|
-
export interface
|
|
490
|
+
export interface EnvironmentalVariable {
|
|
489
491
|
/**
|
|
490
|
-
* 'name' is the identifier of the
|
|
492
|
+
* 'name' is the identifier of the variable, which is referenced where needed.
|
|
491
493
|
*
|
|
492
|
-
*
|
|
493
|
-
*
|
|
494
|
+
* The 'name' field specifies the unique name of the environmental variable.
|
|
495
|
+
* It is used as an identifier to reference the variable throughout the platform.
|
|
496
|
+
* The name should follow certain restrictions:
|
|
497
|
+
* - Must match the ECMA regex: ^[$a-z][$a-z0-9]*$
|
|
494
498
|
* - Length must be greater than 0 and less than 50 characters.
|
|
495
|
-
*
|
|
496
|
-
* - Should not contain sensitive information.
|
|
499
|
+
* It is important to note that the 'name' field should not contain sensitive information.
|
|
497
500
|
*
|
|
498
501
|
* @generated from protobuf field: string name = 1;
|
|
499
502
|
*/
|
|
500
503
|
name: string;
|
|
501
504
|
/**
|
|
502
|
-
* 'optional' indicates whether the
|
|
505
|
+
* 'optional' indicates whether the variable is optional or required.
|
|
506
|
+
*
|
|
507
|
+
* The 'optional' field specifies whether the environmental variable is optional or mandatory for the application or service.
|
|
508
|
+
* If 'optional' is set to true, the variable is not required, and the application or service can function without it.
|
|
509
|
+
* If 'optional' is set to false, the variable is required, and the application or service may fail if it is not provided.
|
|
503
510
|
*
|
|
504
511
|
* @generated from protobuf field: bool optional = 2;
|
|
505
512
|
*/
|
|
506
513
|
optional: boolean;
|
|
507
514
|
/**
|
|
508
|
-
* 'label' is a short, human-readable label describing the purpose of the
|
|
509
|
-
* secret.
|
|
515
|
+
* 'label' is a short, human-readable label describing the purpose of the variable.
|
|
510
516
|
*
|
|
511
|
-
*
|
|
517
|
+
* The 'label' field provides a concise, human-readable label that describes the purpose or role of the environmental variable.
|
|
518
|
+
* It helps users understand the significance of the variable without going into detailed descriptions.
|
|
519
|
+
* The label should adhere to the following restrictions:
|
|
512
520
|
* - Length must be greater than 0 and less than 25 characters.
|
|
513
|
-
*
|
|
514
|
-
* - Avoid including sensitive information in the label.
|
|
521
|
+
* The 'label' field should not include sensitive information.
|
|
515
522
|
*
|
|
516
523
|
* @generated from protobuf field: optional string label = 3;
|
|
517
524
|
*/
|
|
518
525
|
label?: string;
|
|
519
526
|
/**
|
|
520
|
-
* 'description' is a detailed description of the
|
|
527
|
+
* 'description' is a detailed description of the variable and its use.
|
|
521
528
|
*
|
|
522
|
-
*
|
|
523
|
-
*
|
|
524
|
-
*
|
|
525
|
-
*
|
|
529
|
+
* The 'description' field provides a detailed description of the environmental variable and its purpose.
|
|
530
|
+
* It offers comprehensive information about the variable's usage, expected values, and any special considerations.
|
|
531
|
+
* The description should be concise and informative, with a length limit of 250 characters.
|
|
532
|
+
* Sensitive information should not be included in the 'description' field.
|
|
526
533
|
*
|
|
527
534
|
* @generated from protobuf field: optional string description = 4;
|
|
528
535
|
*/
|
|
529
536
|
description?: string;
|
|
537
|
+
/**
|
|
538
|
+
* The 'type' field specifies the data type of the environmental variable.
|
|
539
|
+
* It is represented using an enumeration, allowing four possible values:
|
|
540
|
+
* - TYPE_UNSPECIFIED: Indicates that the variable's type is not specified. This value is considered invalid.
|
|
541
|
+
* - TYPE_SECRET: Indicates that the variable will hold a secret value. Secrets are sensitive information and are handled with additional security measures.
|
|
542
|
+
* - TYPE_STRING: Indicates that the variable will hold a string value. Strings are commonly used for configuration settings.
|
|
543
|
+
* - TYPE_SWITCH: Indicates that the variable is a boolean value. It can have either true or false as its value.
|
|
544
|
+
*
|
|
545
|
+
* @generated from protobuf field: mochabug.adapt.plugins.v1.EnvironmentalVariable.Type type = 5;
|
|
546
|
+
*/
|
|
547
|
+
type: EnvironmentalVariable_Type;
|
|
548
|
+
}
|
|
549
|
+
/**
|
|
550
|
+
* The type of variable
|
|
551
|
+
*
|
|
552
|
+
* @generated from protobuf enum mochabug.adapt.plugins.v1.EnvironmentalVariable.Type
|
|
553
|
+
*/
|
|
554
|
+
export declare enum EnvironmentalVariable_Type {
|
|
555
|
+
/**
|
|
556
|
+
* The type is not specified. Invalid value
|
|
557
|
+
*
|
|
558
|
+
* @generated from protobuf enum value: TYPE_UNSPECIFIED = 0;
|
|
559
|
+
*/
|
|
560
|
+
UNSPECIFIED = 0,
|
|
561
|
+
/**
|
|
562
|
+
* The variable will hold a secret
|
|
563
|
+
*
|
|
564
|
+
* @generated from protobuf enum value: TYPE_SECRET = 1;
|
|
565
|
+
*/
|
|
566
|
+
SECRET = 1,
|
|
567
|
+
/**
|
|
568
|
+
* The variable will hold a string
|
|
569
|
+
*
|
|
570
|
+
* @generated from protobuf enum value: TYPE_STRING = 2;
|
|
571
|
+
*/
|
|
572
|
+
STRING = 2,
|
|
573
|
+
/**
|
|
574
|
+
* The variable is a boolean value
|
|
575
|
+
*
|
|
576
|
+
* @generated from protobuf enum value: TYPE_SWITCH = 3;
|
|
577
|
+
*/
|
|
578
|
+
SWITCH = 3
|
|
530
579
|
}
|
|
531
580
|
/**
|
|
532
581
|
* Vertex represents a graph vertex that defines a plugin.
|
|
@@ -769,16 +818,16 @@ declare class OAuth2Service$Type extends MessageType<OAuth2Service> {
|
|
|
769
818
|
* @generated MessageType for protobuf message mochabug.adapt.plugins.v1.OAuth2Service
|
|
770
819
|
*/
|
|
771
820
|
export declare const OAuth2Service: OAuth2Service$Type;
|
|
772
|
-
declare class
|
|
821
|
+
declare class EnvironmentalVariable$Type extends MessageType<EnvironmentalVariable> {
|
|
773
822
|
constructor();
|
|
774
|
-
create(value?: PartialMessage<
|
|
775
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?:
|
|
776
|
-
internalBinaryWrite(message:
|
|
823
|
+
create(value?: PartialMessage<EnvironmentalVariable>): EnvironmentalVariable;
|
|
824
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EnvironmentalVariable): EnvironmentalVariable;
|
|
825
|
+
internalBinaryWrite(message: EnvironmentalVariable, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
777
826
|
}
|
|
778
827
|
/**
|
|
779
|
-
* @generated MessageType for protobuf message mochabug.adapt.plugins.v1.
|
|
828
|
+
* @generated MessageType for protobuf message mochabug.adapt.plugins.v1.EnvironmentalVariable
|
|
780
829
|
*/
|
|
781
|
-
export declare const
|
|
830
|
+
export declare const EnvironmentalVariable: EnvironmentalVariable$Type;
|
|
782
831
|
declare class Vertex$Type extends MessageType<Vertex> {
|
|
783
832
|
constructor();
|
|
784
833
|
create(value?: PartialMessage<Vertex>): Vertex;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../../../../../src/gen/mochabug/adapt/plugins/v1/plugins.ts"],"names":[],"mappings":"AAkBA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAG3D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD;;;;;;GAMG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,IAAI,EAAE;QACF,SAAS,EAAE,UAAU,CAAC;QACtB;;;;;WAKG;QACH,QAAQ,EAAE,QAAQ,CAAC;KACtB,GAAG;QACA,SAAS,EAAE,MAAM,CAAC;QAClB;;;;;WAKG;QACH,IAAI,EAAE,IAAI,CAAC;KACd,GAAG;QACA,SAAS,EAAE,SAAS,CAAC;KACxB,CAAC;CACL;AACD;;;;;;GAMG;AACH,MAAM,WAAW,oBAAoB;CACpC;AACD;;;;GAIG;AACH,MAAM,WAAW,IAAI;IACjB;;;;;;;;;OASG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;;;;;OAQG;IACH,IAAI,EAAE,UAAU,CAAC;CACpB;AACD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,WAAW,QAAQ;IACrB;;;;;;;;;;OAUG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;;;;;;;OAUG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;OASG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;;;;;;OASG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;;;;;;OASG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;;;;;;OASG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;;;;;;;;;;;;;;;OAkBG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;;;;;;;OAUG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;;;;;;;;OAWG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;;;;;;;OAUG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;;;;OAOG;IACH,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB;;;;;;;;OAQG;IACH,
|
|
1
|
+
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../../../../../src/gen/mochabug/adapt/plugins/v1/plugins.ts"],"names":[],"mappings":"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"}
|