@trackunit/iris-app-api 0.2.9 → 0.2.10

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.2.10](https://github.com/Trackunit/manager/compare/iris-app-api/0.2.9...iris-app-api/0.2.10) (2024-10-22)
6
+
5
7
  ## [0.2.9](https://github.com/Trackunit/manager/compare/iris-app-api/0.2.8...iris-app-api/0.2.9) (2024-10-15)
6
8
 
7
9
  ## [0.2.8](https://github.com/Trackunit/manager/compare/iris-app-api/0.2.7...iris-app-api/0.2.8) (2024-10-07)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-api",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -94,5 +94,5 @@ export interface Marketplace_1_0 {
94
94
  */
95
95
  supportUrl?: string;
96
96
  }
97
- export declare const CategoryValues: readonly ["DATA_FEEDS", "SERVICE_AND_MAINTENANCE", "CONSULTANTS", "EQUIPMENT_PROTECTION", "ASSET_MANAGEMENT", "RENTAL_MANAGEMENT", "OPTIMIZE_BUSINESS", "EFFECTIVE_OPERATIONS", "SUSTAINABILITY", "DOCUMENTATION", "COMPLIANCE", "OEM_PARTNER_SOLUTIONS"];
97
+ export declare const CategoryValues: readonly ["ASSET_MANAGEMENT", "COMPLIANCE", "CONSULTANTS", "DATA_FEEDS", "DOCUMENTATION", "EFFECTIVE_OPERATIONS", "EQUIPMENT_PROTECTION", "OEM_PARTNER_SOLUTIONS", "OPTIMIZE_BUSINESS", "RENTAL_MANAGEMENT", "SERVICE_AND_MAINTENANCE", "SUSTAINABILITY"];
98
98
  export declare type Category = (typeof CategoryValues)[number];
@@ -2,17 +2,17 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CategoryValues = void 0;
4
4
  exports.CategoryValues = [
5
- "DATA_FEEDS",
6
- "SERVICE_AND_MAINTENANCE",
5
+ "ASSET_MANAGEMENT",
6
+ "COMPLIANCE",
7
7
  "CONSULTANTS",
8
+ "DATA_FEEDS",
9
+ "DOCUMENTATION",
10
+ "EFFECTIVE_OPERATIONS",
8
11
  "EQUIPMENT_PROTECTION",
9
- "ASSET_MANAGEMENT",
10
- "RENTAL_MANAGEMENT",
12
+ "OEM_PARTNER_SOLUTIONS",
11
13
  "OPTIMIZE_BUSINESS",
12
- "EFFECTIVE_OPERATIONS",
14
+ "RENTAL_MANAGEMENT",
15
+ "SERVICE_AND_MAINTENANCE",
13
16
  "SUSTAINABILITY",
14
- "DOCUMENTATION",
15
- "COMPLIANCE",
16
- "OEM_PARTNER_SOLUTIONS",
17
17
  ];
18
18
  //# sourceMappingURL=irisAppMarketplace.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"irisAppMarketplace.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-api/src/types/irisAppMarketplace.ts"],"names":[],"mappings":";;;AAyGa,QAAA,cAAc,GAAG;IAC5B,YAAY;IACZ,yBAAyB;IACzB,aAAa;IACb,sBAAsB;IACtB,kBAAkB;IAClB,mBAAmB;IACnB,mBAAmB;IACnB,sBAAsB;IACtB,gBAAgB;IAChB,eAAe;IACf,YAAY;IACZ,uBAAuB;CACf,CAAC","sourcesContent":["import { SubscriptionPackage } from \"./subscriptionPackages\";\n\n/**\n * An image that should be shown in the marketplace for this app.\n */\nexport interface MarketplaceAssetImage {\n /**\n * The type of the Asset\n */\n type: \"IMAGE\";\n /**\n * A Path to an image in the assets folder of the app.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n path: string;\n}\n\n/**\n * A video that should be shown in the marketplace for this app.\n */\nexport interface MarketplaceAssetVideo {\n /**\n * The type of the Asset\n */\n type: \"VIDEO\";\n /**\n * An url for a youtube video.\n */\n url: string;\n}\n\n/**\n * A video or image that should be shown in the marketplace for this app.\n */\nexport type MarketplaceAsset = MarketplaceAssetImage | MarketplaceAssetVideo;\n\n/**\n * An object of data used when the app is displayed in the marketplace\n */\nexport interface Marketplace extends Omit<Marketplace_1_0, \"allowForPackage\"> {\n /**\n * Indicate if the app should be shown in the Trackunit Marketplace.\n */\n showInMarketplace: boolean;\n}\n\n/**\n * An object of data used when the app is displayed in the marketplace\n *\n * @deprecated\n */\nexport interface Marketplace_1_0 {\n /**\n * Name used for the marketplace.\n */\n name: string;\n\n /**\n * A short summary used for the card on marketplace.\n * For longer description add a description.md file in the /assets/ folder of the app, and set the fullDescriptionPath.\n */\n description: string;\n\n /**\n * The path to a markdown file that explains your app in more detail.\n * The file must be stored in the assets folder within the app directory to work.\n * The path is relative to that directory.\n * For a file apps/my-app/assets/description.md, this parameter should be: description.md\n */\n fullDescriptionPath: string;\n\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown in the marketplace.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n logoPath?: string;\n /**\n * A list of relevant tags to make your app easier to find.\n */\n tags?: string[];\n /**\n * Categories used for the app in the marketplace.\n */\n categories?: Category[];\n /**\n * Assets (images and videos) used for the marketplace.\n */\n assets?: MarketplaceAsset[];\n /**\n * Defines with which subscription packages your app is compatible.\n * Take great care when entering this, as your app might bug out (if it went through the approval phase in the first place)\n * if what is stated here does not match reality.\n */\n allowForPackage: \"ALL_PACKAGES\" | SubscriptionPackage[];\n /**\n * Homepage of the company building the app for the marketplace.\n */\n homePageUrl?: string;\n /**\n * The direct support page for this app.\n */\n supportUrl?: string;\n}\n\nexport const CategoryValues = [\n \"DATA_FEEDS\",\n \"SERVICE_AND_MAINTENANCE\",\n \"CONSULTANTS\",\n \"EQUIPMENT_PROTECTION\",\n \"ASSET_MANAGEMENT\",\n \"RENTAL_MANAGEMENT\",\n \"OPTIMIZE_BUSINESS\",\n \"EFFECTIVE_OPERATIONS\",\n \"SUSTAINABILITY\",\n \"DOCUMENTATION\",\n \"COMPLIANCE\",\n \"OEM_PARTNER_SOLUTIONS\",\n] as const;\n\nexport declare type Category = (typeof CategoryValues)[number];\n"]}
1
+ {"version":3,"file":"irisAppMarketplace.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-api/src/types/irisAppMarketplace.ts"],"names":[],"mappings":";;;AAyGa,QAAA,cAAc,GAAG;IAC5B,kBAAkB;IAClB,YAAY;IACZ,aAAa;IACb,YAAY;IACZ,eAAe;IACf,sBAAsB;IACtB,sBAAsB;IACtB,uBAAuB;IACvB,mBAAmB;IACnB,mBAAmB;IACnB,yBAAyB;IACzB,gBAAgB;CACR,CAAC","sourcesContent":["import { SubscriptionPackage } from \"./subscriptionPackages\";\n\n/**\n * An image that should be shown in the marketplace for this app.\n */\nexport interface MarketplaceAssetImage {\n /**\n * The type of the Asset\n */\n type: \"IMAGE\";\n /**\n * A Path to an image in the assets folder of the app.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n path: string;\n}\n\n/**\n * A video that should be shown in the marketplace for this app.\n */\nexport interface MarketplaceAssetVideo {\n /**\n * The type of the Asset\n */\n type: \"VIDEO\";\n /**\n * An url for a youtube video.\n */\n url: string;\n}\n\n/**\n * A video or image that should be shown in the marketplace for this app.\n */\nexport type MarketplaceAsset = MarketplaceAssetImage | MarketplaceAssetVideo;\n\n/**\n * An object of data used when the app is displayed in the marketplace\n */\nexport interface Marketplace extends Omit<Marketplace_1_0, \"allowForPackage\"> {\n /**\n * Indicate if the app should be shown in the Trackunit Marketplace.\n */\n showInMarketplace: boolean;\n}\n\n/**\n * An object of data used when the app is displayed in the marketplace\n *\n * @deprecated\n */\nexport interface Marketplace_1_0 {\n /**\n * Name used for the marketplace.\n */\n name: string;\n\n /**\n * A short summary used for the card on marketplace.\n * For longer description add a description.md file in the /assets/ folder of the app, and set the fullDescriptionPath.\n */\n description: string;\n\n /**\n * The path to a markdown file that explains your app in more detail.\n * The file must be stored in the assets folder within the app directory to work.\n * The path is relative to that directory.\n * For a file apps/my-app/assets/description.md, this parameter should be: description.md\n */\n fullDescriptionPath: string;\n\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown in the marketplace.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n logoPath?: string;\n /**\n * A list of relevant tags to make your app easier to find.\n */\n tags?: string[];\n /**\n * Categories used for the app in the marketplace.\n */\n categories?: Category[];\n /**\n * Assets (images and videos) used for the marketplace.\n */\n assets?: MarketplaceAsset[];\n /**\n * Defines with which subscription packages your app is compatible.\n * Take great care when entering this, as your app might bug out (if it went through the approval phase in the first place)\n * if what is stated here does not match reality.\n */\n allowForPackage: \"ALL_PACKAGES\" | SubscriptionPackage[];\n /**\n * Homepage of the company building the app for the marketplace.\n */\n homePageUrl?: string;\n /**\n * The direct support page for this app.\n */\n supportUrl?: string;\n}\n\nexport const CategoryValues = [\n \"ASSET_MANAGEMENT\",\n \"COMPLIANCE\",\n \"CONSULTANTS\",\n \"DATA_FEEDS\",\n \"DOCUMENTATION\",\n \"EFFECTIVE_OPERATIONS\",\n \"EQUIPMENT_PROTECTION\",\n \"OEM_PARTNER_SOLUTIONS\",\n \"OPTIMIZE_BUSINESS\",\n \"RENTAL_MANAGEMENT\",\n \"SERVICE_AND_MAINTENANCE\",\n \"SUSTAINABILITY\",\n] as const;\n\nexport declare type Category = (typeof CategoryValues)[number];\n"]}