@stackone/core 1.61.1 → 1.62.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/dist/index.d.mts CHANGED
@@ -482,6 +482,11 @@ type SupportConfig = {
482
482
  link: string;
483
483
  description?: string;
484
484
  };
485
+ type TestOperationConfig = {
486
+ operation: Operation;
487
+ condition?: string;
488
+ required: boolean;
489
+ };
485
490
  type AuthenticationConfig = {
486
491
  envKey: string;
487
492
  envName: string;
@@ -498,7 +503,7 @@ type AuthenticationConfig = {
498
503
  schedule?: string;
499
504
  operation: Operation;
500
505
  };
501
- testOperationsIds?: string[];
506
+ testOperations?: TestOperationConfig[];
502
507
  };
503
508
  type Authentication = {
504
509
  [authType: string]: {
package/dist/index.d.ts CHANGED
@@ -482,6 +482,11 @@ type SupportConfig = {
482
482
  link: string;
483
483
  description?: string;
484
484
  };
485
+ type TestOperationConfig = {
486
+ operation: Operation;
487
+ condition?: string;
488
+ required: boolean;
489
+ };
485
490
  type AuthenticationConfig = {
486
491
  envKey: string;
487
492
  envName: string;
@@ -498,7 +503,7 @@ type AuthenticationConfig = {
498
503
  schedule?: string;
499
504
  operation: Operation;
500
505
  };
501
- testOperationsIds?: string[];
506
+ testOperations?: TestOperationConfig[];
502
507
  };
503
508
  type Authentication = {
504
509
  [authType: string]: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackone/core",
3
- "version": "1.61.1",
3
+ "version": "1.62.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",