@automateinc/fleet-types 1.0.31 → 1.0.33

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.
@@ -0,0 +1,21 @@
1
+ name: Publish Package to npmjs
2
+ on:
3
+ push:
4
+ branches: ["main"]
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ contents: read
10
+ id-token: write
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ # Setup .npmrc file to publish to npm
14
+ - uses: actions/setup-node@v4
15
+ with:
16
+ node-version: '20.x'
17
+ registry-url: 'https://registry.npmjs.org'
18
+ - run: npm ci
19
+ - run: npm publish --provenance --access public
20
+ env:
21
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -34,6 +34,7 @@ export type PaginatedResponse<T> = {
34
34
  };
35
35
 
36
36
  export * from "./attendance";
37
+ export * from "./attendance-action";
37
38
  export * from "./attendance-presence-check";
38
39
  export * from "./attendance-count";
39
40
  export * from "./company";
@@ -9,5 +9,6 @@ export interface IRequestAction {
9
9
  type: "VERIFICATION" | "APPROVAL" | "REJECTION" | "CREATION";
10
10
  operation: "HTTP";
11
11
  config: Record<string, any>;
12
+ order: number;
12
13
  fields: IRequestCategoryField[];
13
14
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.31",
4
+ "version": "1.0.33",
5
5
  "description": "Reusable TypeScript types and interfaces for Fleet API.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/types/index.d.ts",