namirasoft-sms-sender 1.2.0 → 1.3.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.
@@ -2,5 +2,5 @@ export type SentRow_Input = {
2
2
  project_id: string;
3
3
  provider_id: string;
4
4
  phone: string;
5
- content: string;
5
+ message: string;
6
6
  };
package/logo.png ADDED
Binary file
package/package.json CHANGED
@@ -1,15 +1,21 @@
1
1
  {
2
2
  "name": "namirasoft-sms-sender",
3
+ "title": "Namirasoft SMS Sender",
3
4
  "description": "Namira Software Corporation SMS Sender NPM Package",
4
5
  "icon": "logo.png",
5
- "version": "1.2.0",
6
+ "logo": "https://static.namirasoft.com/logo/sms/sender/name.png",
7
+ "language": "ts",
8
+ "framework": "npm",
9
+ "application": "package",
10
+ "private": false,
11
+ "version": "1.3.0",
6
12
  "main": "./dist/index.js",
7
13
  "types": "./dist/index.d.ts",
8
- "scripts": {},
9
14
  "author": "Amir Abolhasani",
10
15
  "license": "MIT",
16
+ "scripts": {},
11
17
  "dependencies": {
12
- "namirasoft-core": "^1.2.4",
13
- "namirasoft-account": "^1.2.1"
18
+ "namirasoft-core": "^1.3.0",
19
+ "namirasoft-account": "^1.3.0"
14
20
  }
15
21
  }
@@ -23,5 +23,5 @@ export type SentRow_Input =
23
23
  project_id: string;
24
24
  provider_id: string;
25
25
  phone: string;
26
- content: string;
26
+ message: string;
27
27
  }
package/tsconfig.json CHANGED
@@ -2,10 +2,14 @@
2
2
  "compilerOptions": {
3
3
  "target": "ES6",
4
4
  "module": "CommonJS",
5
- "outDir": "./dist",
6
5
  "rootDir": "./src",
7
- "allowJs": true,
8
- "checkJs": true,
6
+ "outDir": "./dist",
7
+ "lib": [
8
+ "es6",
9
+ "dom"
10
+ ],
11
+ "allowJs": false,
12
+ "checkJs": false,
9
13
  "strict": true,
10
14
  "esModuleInterop": true,
11
15
  "sourceMap": true,
@@ -17,11 +21,22 @@
17
21
  "noImplicitOverride": true,
18
22
  "noImplicitReturns": true,
19
23
  "noImplicitThis": true,
20
- "skipLibCheck": false,
24
+ "skipLibCheck": true,
21
25
  "allowSyntheticDefaultImports": true,
22
26
  "forceConsistentCasingInFileNames": true,
23
27
  "noFallthroughCasesInSwitch": true,
24
- "isolatedModules": true,
28
+ "isolatedModules": false,
25
29
  "removeComments": true,
26
- }
30
+ },
31
+ "include": [
32
+ "src",
33
+ "build/types/**/*.ts"
34
+ ],
35
+ "exclude": [
36
+ "node_modules",
37
+ "build",
38
+ "dist",
39
+ "static",
40
+ "public"
41
+ ]
27
42
  }
package/.gitlab-ci.yml DELETED
@@ -1,14 +0,0 @@
1
- stages:
2
- - npm-publish
3
-
4
- publish:
5
- stage: npm-publish
6
- script:
7
- - rm -rf node_modules
8
- - rm -rf dist
9
- - ncu -u
10
- - npm i
11
- - tsc
12
- - npm publish
13
- only:
14
- - master