lucid-extension-sdk 0.0.307 → 0.0.309

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/commandtypes.d.ts CHANGED
@@ -762,6 +762,8 @@ export type AddCardIntegrationQuery = {
762
762
  /** Create card action */
763
763
  'cc': string;
764
764
  } | undefined;
765
+ /** Whether to enable dependency mapping for this integration */
766
+ 'sdm'?: boolean;
765
767
  };
766
768
  export type AddCardIntegrationResult = undefined;
767
769
  /** @ignore */
@@ -95,4 +95,5 @@ export declare abstract class LucidCardIntegration {
95
95
  }>;
96
96
  };
97
97
  showCardImport(name: string): import("../../commandtypes").ImportCardsResult;
98
+ showDependencyMapping?: boolean;
98
99
  }
@@ -141,6 +141,9 @@ class LucidCardIntegrationRegistry {
141
141
  };
142
142
  });
143
143
  }
144
+ if (cardIntegration.showDependencyMapping) {
145
+ serialized['sdm'] = true;
146
+ }
144
147
  client.sendCommand("aci" /* CommandName.AddCardIntegration */, serialized);
145
148
  }
146
149
  }
@@ -67,6 +67,18 @@ export declare enum LucidFields {
67
67
  /**
68
68
  * Refers to the URL of the image associated with this item
69
69
  */
70
- ImageUrl = "url.image"
70
+ ImageUrl = "url.image",
71
+ /**
72
+ * Represents the sprint or time interval this item is assigned to.
73
+ */
74
+ Sprint = "sprint",
75
+ /**
76
+ * Refers to the team associated with or responsible for this item.
77
+ */
78
+ Team = "team",
79
+ /**
80
+ * Refers to the parent item this item belongs to.
81
+ */
82
+ Parent = "parent"
71
83
  }
72
84
  export declare const isLucidFields: (x: unknown) => x is LucidFields;
@@ -73,5 +73,17 @@ var LucidFields;
73
73
  * Refers to the URL of the image associated with this item
74
74
  */
75
75
  LucidFields["ImageUrl"] = "url.image";
76
+ /**
77
+ * Represents the sprint or time interval this item is assigned to.
78
+ */
79
+ LucidFields["Sprint"] = "sprint";
80
+ /**
81
+ * Refers to the team associated with or responsible for this item.
82
+ */
83
+ LucidFields["Team"] = "team";
84
+ /**
85
+ * Refers to the parent item this item belongs to.
86
+ */
87
+ LucidFields["Parent"] = "parent";
76
88
  })(LucidFields || (exports.LucidFields = LucidFields = {}));
77
89
  exports.isLucidFields = (0, validators_1.stringEnumValidator)(LucidFields);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.307",
3
+ "version": "0.0.309",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",