need4deed-sdk 0.0.27 → 0.0.29

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,11 @@
1
+ export declare enum DocumentType {
2
+ CGC = "CGC",
3
+ CGC_APPLICATION = "CGC_APPLICATION",
4
+ PASSPORT_ID = "PASSPORT_ID"
5
+ }
6
+ export interface ApiDocumentGet {
7
+ id: number;
8
+ type: DocumentType;
9
+ title: string;
10
+ url: string;
11
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DocumentType = void 0;
4
+ var DocumentType;
5
+ (function (DocumentType) {
6
+ DocumentType["CGC"] = "CGC";
7
+ DocumentType["CGC_APPLICATION"] = "CGC_APPLICATION";
8
+ DocumentType["PASSPORT_ID"] = "PASSPORT_ID";
9
+ })(DocumentType || (exports.DocumentType = DocumentType = {}));
@@ -1,5 +1,6 @@
1
1
  export * from "./comment";
2
2
  export * from "./common";
3
+ export * from "./document";
3
4
  export * from "./event";
4
5
  export * from "./language";
5
6
  export * from "./location";
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./comment"), exports);
18
18
  __exportStar(require("./common"), exports);
19
+ __exportStar(require("./document"), exports);
19
20
  __exportStar(require("./event"), exports);
20
21
  __exportStar(require("./language"), exports);
21
22
  __exportStar(require("./location"), exports);
@@ -62,7 +62,8 @@ export declare enum VolunteerStateAppreciationType {
62
62
  export declare enum VolunteerStateTypeType {
63
63
  ACCOMPANYING = "accompanying",
64
64
  REGULAR = "regular",
65
- EVENTS = "events"
65
+ EVENTS = "events",
66
+ REGULAR_ACCOMPANYING = "regular-accompanying"
66
67
  }
67
68
  export declare enum VolunteerStateCGCType {
68
69
  UPLOADED = "uploaded",
@@ -29,6 +29,7 @@ var VolunteerStateTypeType;
29
29
  VolunteerStateTypeType["ACCOMPANYING"] = "accompanying";
30
30
  VolunteerStateTypeType["REGULAR"] = "regular";
31
31
  VolunteerStateTypeType["EVENTS"] = "events";
32
+ VolunteerStateTypeType["REGULAR_ACCOMPANYING"] = "regular-accompanying";
32
33
  })(VolunteerStateTypeType || (exports.VolunteerStateTypeType = VolunteerStateTypeType = {}));
33
34
  var VolunteerStateCGCType;
34
35
  (function (VolunteerStateCGCType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",
@@ -23,18 +23,12 @@
23
23
  "watch": "tsc --watch --project tsconfig.cjs.json",
24
24
  "prepublishOnly": "yarn build",
25
25
  "publish": "yarn publish",
26
- "publish:npm": "yarn publish --access public",
26
+ "publish:npm": "npm publish --non-interactive",
27
27
  "create-pr": "./create-pr.sh"
28
28
  },
29
29
  "keywords": [
30
30
  "sdk",
31
- "react",
32
- "typescript",
33
- "api-hooks",
34
- "ui-components",
35
- "layouts",
36
- "styling",
37
- "utilities"
31
+ "typescript"
38
32
  ],
39
33
  "author": "Need4Deed.org",
40
34
  "license": "MIT",
@@ -46,9 +40,5 @@
46
40
  "@types/react": "^18.0.0",
47
41
  "@types/react-dom": "^18.0.0",
48
42
  "typescript": "^5.8.3"
49
- },
50
- "peerDependencies": {
51
- "react": "^17.0.0 || ^18.0.0",
52
- "react-dom": "^17.0.0 || ^18.0.0"
53
43
  }
54
44
  }