@artisan-commerce/builders 0.7.0-canary.2 → 0.7.0-canary.21

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.
Files changed (41) hide show
  1. package/CHANGELOG.md +165 -0
  2. package/dist/bundle.cjs.js +90344 -0
  3. package/dist/bundle.cjs.js.map +1 -0
  4. package/dist/bundle.d.ts +2364 -0
  5. package/dist/bundle.esm.js +90321 -0
  6. package/dist/bundle.esm.js.map +1 -0
  7. package/dist/bundle.umd.js +90350 -0
  8. package/dist/bundle.umd.js.map +1 -0
  9. package/package.json +21 -20
  10. package/build/builders/account.builder.d.ts +0 -17
  11. package/build/builders/banner.builder.d.ts +0 -35
  12. package/build/builders/billingData.builder.d.ts +0 -18
  13. package/build/builders/catalogue.builder.d.ts +0 -18
  14. package/build/builders/category.builder.d.ts +0 -36
  15. package/build/builders/common.builder.d.ts +0 -204
  16. package/build/builders/country.builder.d.ts +0 -44
  17. package/build/builders/coupon.builder.d.ts +0 -50
  18. package/build/builders/fulfillment.builder.d.ts +0 -187
  19. package/build/builders/image.builder.d.ts +0 -32
  20. package/build/builders/notification.builder.d.ts +0 -19
  21. package/build/builders/order.builder.d.ts +0 -167
  22. package/build/builders/payment.builder.d.ts +0 -93
  23. package/build/builders/product.builder.d.ts +0 -161
  24. package/build/builders/settings.builder.d.ts +0 -37
  25. package/build/builders/shippingAddress.builder.d.ts +0 -108
  26. package/build/builders/shoppingCart.builder.d.ts +0 -76
  27. package/build/builders/store.builder.d.ts +0 -106
  28. package/build/builders/user.builder.d.ts +0 -17
  29. package/build/builders/vendor.builder.d.ts +0 -17
  30. package/build/config/constants.d.ts +0 -2
  31. package/build/data/products.data.d.ts +0 -4
  32. package/build/index.d.ts +0 -23
  33. package/build/lib/artisn.d.ts +0 -5
  34. package/build/main.bundle.js +0 -10
  35. package/build/report.json +0 -1
  36. package/build/types/artisn.types.d.ts +0 -1
  37. package/build/types/product.types.d.ts +0 -6
  38. package/build/utils/artisn.utils.d.ts +0 -2
  39. package/build/utils/common.utils.d.ts +0 -8
  40. package/build/vendors.bundle.js +0 -1
  41. package/build/vendors.d.ts +0 -1
package/package.json CHANGED
@@ -1,19 +1,27 @@
1
1
  {
2
2
  "name": "@artisan-commerce/builders",
3
3
  "description": "Builder functions for all artisn entities",
4
- "version": "0.7.0-canary.2",
5
- "main": "./build/main.bundle.js",
6
- "types": "./build/index.d.ts",
4
+ "version": "0.7.0-canary.21",
5
+ "main": "./dist/bundle.cjs.js",
6
+ "module": "./dist/bundle.esm.js",
7
+ "types": "./dist/bundle.d.ts",
7
8
  "files": [
8
- "build/",
9
- "LICENSE",
10
- "README.md"
9
+ "dist"
11
10
  ],
11
+ "sideEffects": false,
12
+ "exports": {
13
+ "node": {
14
+ "import": "./dist/bundle.esm.js",
15
+ "require": "./dist/bundle.cjs.js"
16
+ },
17
+ "default": "./dist/bundle.esm.js"
18
+ },
12
19
  "scripts": {
13
- "compile": "webpack --config webpack.dev.js",
14
- "dev": "yarn compile",
15
- "build": "webpack --config webpack.prod.js",
16
- "compile:build": "nodemon ./build/main.bundle.js",
20
+ "compile": "rollup -c",
21
+ "dev": "yarn compile -w",
22
+ "clean": "rimraf dist",
23
+ "prebuild": "yarn clean",
24
+ "build": "yarn compile",
17
25
  "test": "jest --watchAll --runInBand --passWithNoTests",
18
26
  "test:all": "yarn test --watchAll=false --coverage",
19
27
  "test:ci": "cross-env CI=true jest --runInBand --passWithNoTests",
@@ -30,7 +38,7 @@
30
38
  "author": "Luis Eduardo Andrade",
31
39
  "license": "MIT",
32
40
  "devDependencies": {
33
- "@artisan-commerce/types": "0.14.0-canary.2",
41
+ "@artisan-commerce/types": "0.14.0-canary.19",
34
42
  "@babel/core": "^7.10.5",
35
43
  "@babel/preset-env": "^7.10.4",
36
44
  "@babel/preset-react": "^7.10.4",
@@ -44,8 +52,6 @@
44
52
  "avn": "^0.2.4",
45
53
  "avn-nvm": "^0.2.2",
46
54
  "btoa": "^1.2.1",
47
- "clean-webpack-plugin": "^3.0.0",
48
- "dotenv-webpack": "^2.0.0",
49
55
  "env-cmd": "^10.1.0",
50
56
  "eslint": "^7.5.0",
51
57
  "eslint-config-prettier": "^6.11.0",
@@ -68,12 +74,7 @@
68
74
  "start-server-and-test": "^1.11.2",
69
75
  "test-data-bot": "^0.8.0",
70
76
  "ts-jest": "^26.1.4",
71
- "ts-loader": "^8.0.2",
72
- "webpack": "^4.43.0",
73
- "webpack-bundle-analyzer": "^3.9.0",
74
- "webpack-cli": "^3.3.12",
75
- "webpack-dev-server": "^3.11.0",
76
- "webpack-merge": "^5.0.9"
77
+ "ts-loader": "^8.0.2"
77
78
  },
78
- "gitHead": "61cd421cf586b967fe48a7502e1f3841c0877f0e"
79
+ "gitHead": "9ec4dccd5dd073b70584657e1c91ac0710121f70"
79
80
  }
@@ -1,17 +0,0 @@
1
- import { Account } from "@artisan-commerce/types";
2
- /**
3
- * Generates Account object with random data.
4
- *
5
- * @since 0.5.14
6
- * @param {Partial<Account>} overrides Properties to override a {@link Account}
7
- * @returns {Account} A {@link Account} object
8
- */
9
- export declare const buildAccount: (overrides?: Partial<Account>) => Account;
10
- /**
11
- * Generates a list of Account objects with random data.
12
- *
13
- * @since 0.5.14
14
- * @param {number} quantity The number of objects to be generated
15
- * @returns {Account[]} An array of {@link Account}s objects
16
- */
17
- export declare const genAccounts: (quantity?: number | undefined) => Account[];
@@ -1,35 +0,0 @@
1
- import { BannerImage } from "@artisan-commerce/types";
2
- import { Banner } from "@artisan-commerce/types";
3
- /**
4
- * Generates banner object with random data.
5
- *
6
- * @since 0.5.14
7
- * @param {Partial<Banner>} overrides Properties to override a {@link Banner}
8
- * @returns {Banner} A {@link Banner} object
9
- */
10
- export declare const buildBanner: (overrides?: Partial<Banner>) => Banner;
11
- /**
12
- * Generates a list of Banner objects with random data.
13
- *
14
- * @since 0.5.14
15
- * @param {number} quantity The number of objects to be generated
16
- * @returns {Banner[]} An array of {@link Banner}s objects
17
- */
18
- export declare const genBanners: (quantity?: number | undefined) => Banner[];
19
- /**
20
- * Generates BannerImage object with random data.
21
- *
22
- * @since 0.5.14
23
- * @param {Partial<BannerImage>} overrides Properties to override
24
- * a {@link BannerImage}
25
- * @returns {BannerImage} A {@link BannerImage} object
26
- */
27
- export declare const buildBannerImage: (overrides?: Partial<BannerImage>) => BannerImage;
28
- /**
29
- * Generates a list of banner image objects with random data.
30
- *
31
- * @since 0.5.14
32
- * @param {number} quantity The number of objects to be generated
33
- * @returns {BannerImage[]} An array of banner images, see {@link BannerImage}
34
- */
35
- export declare const genBannerImages: (quantity?: number | undefined) => BannerImage[];
@@ -1,18 +0,0 @@
1
- import { BillingData } from "@artisan-commerce/types";
2
- /**
3
- * Generates BillingData object with random data.
4
- *
5
- * @since 0.5.14
6
- * @param {Partial<BillingData>} overrides Properties to override
7
- * a {@link BillingData}
8
- * @returns {BillingData} A {@link BillingData} object
9
- */
10
- export declare const buildBillingData: (overrides?: Partial<BillingData>) => BillingData;
11
- /**
12
- * Generates a list of Billing Data objects with random data.
13
- *
14
- * @since 0.5.14
15
- * @param {number} quantity The number of objects to be generated
16
- * @returns {BillingData[]} An array of {@link BillingData}s objects
17
- */
18
- export declare const genBillingData: (quantity?: number | undefined) => BillingData[];
@@ -1,18 +0,0 @@
1
- import { Catalogue } from "@artisan-commerce/types";
2
- /**
3
- * Generates Catalogue object with random data.
4
- *
5
- * @since 0.5.14
6
- * @param {Partial<Catalogue>} overrides Properties to override
7
- * a {@link Catalogue}
8
- * @returns {Catalogue} A {@link Catalogue} object
9
- */
10
- export declare const buildCatalogue: (overrides?: Partial<Catalogue>) => Catalogue;
11
- /**
12
- * Generates a list of Catalogue objects with custom data.
13
- *
14
- * @since 0.5.14
15
- * @param {number} quantity The number of objects to be generated
16
- * @returns {Catalogue[]} An array of {@link Catalogue}s objects
17
- */
18
- export declare const genCatalogues: (quantity?: number | undefined) => Catalogue[];
@@ -1,36 +0,0 @@
1
- import { Category, CategoryWithProducts } from "@artisan-commerce/types";
2
- /**
3
- * Generates Category object with random data.
4
- *
5
- * @since 0.5.14
6
- * @param {Partial<Category>} overrides Properties to override
7
- * a {@link Category}
8
- * @returns {Category} A {@link Category} object
9
- */
10
- export declare const buildCategory: (overrides?: Partial<Category>) => Category;
11
- /**
12
- * Generates a list of Category objects with random data.
13
- *
14
- * @since 0.5.14
15
- * @param {number} quantity The number of objects to be generated
16
- * @returns {Category[]} An array of categories objects, see {@link Category}
17
- */
18
- export declare const genCategories: (quantity?: number | undefined) => Category[];
19
- /**
20
- * Generates CategoryWithProducts object with random data.
21
- *
22
- * @since 0.5.14
23
- * @param {Partial<CategoryWithProducts>} overrides Properties to override
24
- * a {@link CategoryWithProducts}
25
- * @returns {CategoryWithProducts} A {@link CategoryWithProducts} object
26
- */
27
- export declare const buildCategoryWithProducts: (overrides?: Partial<CategoryWithProducts>) => CategoryWithProducts;
28
- /**
29
- * Generates a list of CategoryWithProducts objects with random data.
30
- *
31
- * @since 0.5.14
32
- * @param {number} quantity The number of objects to be generated
33
- * @returns {CategoryWithProducts[]} An array of products by categories,
34
- * see {@link CategoryWithProducts}
35
- */
36
- export declare const genCategoryWithProducts: (quantity?: number | undefined) => CategoryWithProducts[];
@@ -1,204 +0,0 @@
1
- import { DocumentType } from "@artisan-commerce/types";
2
- import { CountrySummary, RandomImageConfig } from "@artisan-commerce/types";
3
- /**
4
- * Generates a random password.
5
- *
6
- * @since 0.5.14
7
- * @param {any[]} args An array of arguments to be passed when
8
- * generating the password
9
- * @returns A random password
10
- */
11
- export declare const getPassword: (...args: any[]) => string;
12
- /**
13
- * Generates a random username.
14
- *
15
- * @since 0.5.14
16
- */
17
- export declare const getUsername: (firstName?: string | undefined, lastName?: string | undefined) => string;
18
- /**
19
- * Generates a random unique identifier.
20
- *
21
- * @since 0.5.14
22
- */
23
- export declare const genId: () => string;
24
- /**
25
- * Generates a random id of type number.
26
- *
27
- * @since 0.5.14
28
- */
29
- export declare const genNumericId: () => number;
30
- /**
31
- * Generates a random word.
32
- *
33
- * @since 0.5.14
34
- */
35
- export declare const genWord: () => string;
36
- /**
37
- * Generates a random address.
38
- *
39
- * @since 0.5.14
40
- */
41
- export declare const genAddress: (useFullAddress?: boolean | undefined) => string;
42
- /**
43
- * Generates a random name.
44
- *
45
- * @since 0.5.14
46
- */
47
- export declare const genName: (firstName?: string | undefined, lastName?: string | undefined, gender?: number | undefined) => string;
48
- /**
49
- * Generates a random email.
50
- *
51
- * @since 0.5.14
52
- */
53
- export declare const genEmail: (firstName?: string | undefined, lastName?: string | undefined, provider?: string | undefined) => string;
54
- /**
55
- * Generates a random company name.
56
- *
57
- * @since 0.5.14
58
- */
59
- export declare const genCompanyName: (format?: number | undefined) => string;
60
- /**
61
- * Generates a random paragraph.
62
- *
63
- * @since 0.5.14
64
- */
65
- export declare const genParagraph: (sentenceCount?: number | undefined) => string;
66
- /**
67
- * Generates a random title containing 3 words.
68
- *
69
- * @since 0.5.14
70
- */
71
- export declare const genTitle: () => string;
72
- /**
73
- * Generates a random number.
74
- *
75
- * @since 0.5.14
76
- */
77
- export declare const genNumber: {
78
- (max?: number | undefined): number;
79
- (options?: {
80
- min?: number | undefined;
81
- max?: number | undefined;
82
- precision?: number | undefined;
83
- } | undefined): number;
84
- };
85
- /**
86
- * Generates a random boolean value.
87
- *
88
- * @since 0.5.14
89
- */
90
- export declare const getBoolean: () => boolean;
91
- /**
92
- * Generates a random country name.
93
- *
94
- * @since 0.5.14
95
- */
96
- export declare const genCountryName: () => string;
97
- /**
98
- * Generates a random image based on custom configuration.
99
- *
100
- * @since 0.5.15
101
- * @param {RandomImageConfig} randomImageConfig Configuration
102
- * to generate a random image
103
- * @returns {string} An url of the image generated
104
- */
105
- export declare const genRandomImage: (randomImageConfig?: RandomImageConfig | undefined) => string;
106
- /** Generates random words.
107
- *
108
- * @since 0.5.14
109
- * @param {number} words The quantity of words to be generated
110
- */
111
- export declare const genWords: (words?: number | undefined) => string;
112
- /**
113
- * Generates a random internet url.
114
- *
115
- * @since 0.5.14
116
- */
117
- export declare const genURL: () => string;
118
- /**
119
- * Generates a random date in ISO format.
120
- *
121
- * @since 0.5.14
122
- */
123
- export declare const genDate: () => string;
124
- /**
125
- * Generates a random base64 value.
126
- *
127
- * @since 0.5.14
128
- */
129
- export declare const genBase64: () => string;
130
- /**
131
- * Generates a random boolean value.
132
- *
133
- * @since 0.5.14
134
- * @param {number} bias A number between 0 and 1 which will be used
135
- * to generate a boolean
136
- * @throws Error if bias is not between 0 and 1
137
- * @returns {boolean} A boolean value
138
- */
139
- export declare const genBiasBoolean: (bias: number) => boolean;
140
- /**
141
- * Generates a random document.
142
- *
143
- * @since 0.5.14
144
- * @param {number} digits The number of digits with which the document
145
- * will be generated
146
- * @returns {string} A random document
147
- */
148
- export declare const genDocument: (digits: number) => string;
149
- /**
150
- * Generates a random document type.
151
- *
152
- * @since 0.5.14
153
- */
154
- export declare const genDocumentType: () => DocumentType;
155
- /**
156
- * Generates a random mobile phone with the country code provided.
157
- *
158
- * @since 0.5.14
159
- * @param {string} countryCode Country calling code
160
- * @returns {string} A string like a mobile phone
161
- */
162
- export declare const genMobilPhone: (countryCode: string) => string;
163
- /**
164
- * Generates a Country Summary object with random data.
165
- *
166
- * @since 0.5.14
167
- * @param {number} id Country specific id
168
- * @param {string} name Country specific name
169
- * @returns {CountrySummary} A {@link CountrySummary} object
170
- */
171
- export declare const genCountry: (id?: number | undefined, name?: string | undefined) => CountrySummary;
172
- /**
173
- * Fills a number of type string with characters.
174
- *
175
- * @since 0.5.14
176
- * @param {string} num A string, the length of it will
177
- * be used to fill the number
178
- * @param {number} max A number, the length of it will
179
- * be used to fill the number
180
- * @returns {string} A string filled with the data passed
181
- */
182
- export declare const fillNumber: (num: string, max?: number | undefined) => string;
183
- /**
184
- * Chooses a random item inside the array provided.
185
- *
186
- * @since 0.5.14
187
- * @param {T[]} arr An array of generic items
188
- * @returns {T} A random item of the array passed as param
189
- */
190
- export declare const chooseRandom: <T>(arr: T[]) => T;
191
- /**
192
- * Chooses a random enum value of the enum provided.
193
- *
194
- * @since 0.5.14
195
- * @param {T} anEnum An enum
196
- * @returns {T[keyof T]} A random item of the enum passed as param
197
- */
198
- export declare const chooseRandomEnum: <T>(anEnum: T) => T[keyof T];
199
- /**
200
- * Generates a random currency symbol.
201
- *
202
- * @since 0.5.14
203
- */
204
- export declare const genSymbol: string;
@@ -1,44 +0,0 @@
1
- import { Country, CountryCurrency, CountryTax } from "@artisan-commerce/types";
2
- /**
3
- * Generates CountryCurrency object with random data.
4
- *
5
- * @since 0.5.14
6
- * @param {Partial<CountryCurrency>} overrides Properties to override
7
- * a {@link CountryCurrency}
8
- * @returns {CountryCurrency} A {@link CountryCurrency} object
9
- */
10
- export declare const buildCountryCurrency: (overrides?: Partial<CountryCurrency>) => CountryCurrency;
11
- /**
12
- * Generates CountryTax object with random data.
13
- *
14
- * @since 0.5.14
15
- * @param {Partial<CountryTax>} overrides Properties to override a
16
- * {@link CountryTax}
17
- * @returns {CountryTax} A {@link CountryTax} object
18
- */
19
- export declare const buildCountryTax: (overrides?: Partial<CountryTax>) => CountryTax;
20
- /**
21
- * Generates a list of CountryTax objects with random data.
22
- *
23
- * @since 0.5.14
24
- * @param {number} quantity The number of objects to be generated
25
- * @returns {CountryTax[]} An array of categories objects,
26
- * see {@link CountryTax}
27
- */
28
- export declare const genCountryTax: (quantity?: number | undefined) => CountryTax[];
29
- /**
30
- * Generates Country object with random data.
31
- *
32
- * @since 0.5.14
33
- * @param {Partial<Country>} overrides Properties to override a {@link Country}
34
- * @returns {Country} A {@link Country} object
35
- */
36
- export declare const buildCountry: (overrides?: Partial<Country>) => Country;
37
- /**
38
- * Generates a list of countries objects with random data.
39
- *
40
- * @since 0.5.14
41
- * @param {number} quantity The number of objects to be generated
42
- * @returns An array of countries objects, see {@link Country}
43
- */
44
- export declare const genCountries: (quantity?: number | undefined) => Country[];
@@ -1,50 +0,0 @@
1
- import { Wallet } from "@artisan-commerce/types";
2
- import { Benefit, Award } from "@artisan-commerce/types";
3
- /**
4
- * Generates Benefit object with random data.
5
- *
6
- * @since 0.5.14
7
- * @param {Partial<Benefit>} overrides Properties to override a {@link Benefit}
8
- * @returns {Benefit} A {@link Benefit} object
9
- */
10
- export declare const buildBenefit: (overrides?: Partial<Benefit>) => Benefit;
11
- /**
12
- * Generates a list of Benefit objects with random data.
13
- *
14
- * @since 0.5.14
15
- * @param {number} quantity The number of objects to be generated
16
- * @returns {Benefit[]} An array of Benefit objects, see {@link Benefit}
17
- */
18
- export declare const genBenefits: (quantity?: number | undefined) => Benefit[];
19
- /**
20
- * Generates Award object with random data.
21
- *
22
- * @since 0.5.14
23
- * @param {Partial<>} overrides Properties to override a {@link Award}
24
- * @returns {Award} A {@link Award} object
25
- */
26
- export declare const buildAward: (overrides?: Partial<Award>) => Award;
27
- /**
28
- * Generates a list of Award objects with random data.
29
- *
30
- * @since 0.5.14
31
- * @param {number} quantity The number of objects to be generated
32
- * @returns {Award[]} An array of Award objects, see {@link Award}
33
- */
34
- export declare const genAwards: (quantity?: number | undefined) => Award[];
35
- /**
36
- * Generates Wallet object with random data.
37
- *
38
- * @since 0.5.14
39
- * @param {Partial<Wallet>} overrides Properties to override a {@link Wallet}
40
- * @returns {Wallet} A {@link Wallet} object
41
- */
42
- export declare const buildWallet: (overrides?: Partial<Wallet>) => Wallet;
43
- /**
44
- * Generates a list of Wallet objects with random data.
45
- *
46
- * @since 0.5.14
47
- * @param {number} quantity The number of objects to be generated
48
- * @returns {Wallet[]} An array of Wallet objects, see {@link Wallet}
49
- */
50
- export declare const genWallets: (quantity?: number | undefined) => Wallet[];
@@ -1,187 +0,0 @@
1
- import { Workflow, StepWorkflow } from "@artisan-commerce/types";
2
- import { StepWorkflowAdditionalInfo } from "@artisan-commerce/types";
3
- import { StepWorkflowGroup } from "@artisan-commerce/types";
4
- import { Issue } from "@artisan-commerce/types";
5
- import { StepNotification } from "@artisan-commerce/types";
6
- import { IssueAdditionalInfo, IssueHistory } from "@artisan-commerce/types";
7
- import { WebhookWorkflow, TransitionWorkflow } from "@artisan-commerce/types";
8
- /**
9
- * Generates Issue object with random data.
10
- *
11
- * @since 0.5.15
12
- * @param {Partial<Issue>} overrides Properties to override
13
- * a {@link Issue}
14
- * @returns {Issue} A {@link Issue} object
15
- */
16
- export declare const buildIssue: (overrides?: Partial<Issue>) => Issue;
17
- /**
18
- * Generates a list of Issue objects with random data.
19
- *
20
- * @since 0.5.15
21
- * @param {number} quantity The number of objects to be generated
22
- * @returns {Issue[]} An array of Issue objects,
23
- * see {@link Issue}
24
- */
25
- export declare const genIssues: (quantity?: number | undefined) => Issue[];
26
- /**
27
- * Generates IssueAdditionalInfo object with random data.
28
- *
29
- * @since 0.5.15
30
- * @param {Partial<IssueAdditionalInfo>} overrides Properties to override
31
- * a {@link IssueAdditionalInfo}
32
- * @returns {IssueAdditionalInfo} A {@link IssueAdditionalInfo} object
33
- */
34
- export declare const buildIssueAdditionalInfo: (overrides?: Partial<IssueAdditionalInfo>) => IssueAdditionalInfo;
35
- /**
36
- * Generates a list of IssueAdditionalInfo objects with random data.
37
- *
38
- * @since 0.5.15
39
- * @param {number} quantity The number of objects to be generated
40
- * @returns {IssueAdditionalInfo[]} An array of IssueAdditionalInfo objects,
41
- * see {@link IssueAdditionalInfo}
42
- */
43
- export declare const genIssueAdditionalInfo: (quantity?: number | undefined) => IssueAdditionalInfo[];
44
- /**
45
- * Generates IssueHistory object with random data.
46
- *
47
- * @since 0.5.15
48
- * @param {Partial<IssueHistory>} overrides Properties to override
49
- * a {@link IssueHistory}
50
- * @returns {IssueHistory} A {@link IssueHistory} object
51
- */
52
- export declare const buildIssueHistory: (overrides?: Partial<IssueHistory>) => IssueHistory;
53
- /**
54
- * Generates a list of IssueHistory objects with random data.
55
- *
56
- * @since 0.5.15
57
- * @param {number} quantity The number of objects to be generated
58
- * @returns {IssueHistory[]} An array of IssueHistory objects,
59
- * see {@link IssueHistory}
60
- */
61
- export declare const genIssueHistory: (quantity?: number | undefined) => IssueHistory[];
62
- /**
63
- * Generates Workflow object with random data.
64
- *
65
- * @since 0.5.15
66
- * @param {Partial<Workflow>} overrides Properties to override
67
- * a {@link Workflow}
68
- * @returns {Workflow} A {@link Workflow} object
69
- */
70
- export declare const buildWorkflow: (overrides?: Partial<Workflow>) => Workflow;
71
- /**
72
- * Generates a list of Workflow objects with random data.
73
- *
74
- * @since 0.5.15
75
- * @param {number} quantity The number of objects to be generated
76
- * @returns {Workflow[]} An array of Workflow objects, see {@link Workflow}
77
- */
78
- export declare const genWorkflows: (quantity?: number | undefined) => Workflow[];
79
- /**
80
- * Generates StepNotification object with random data.
81
- *
82
- * @since 0.5.15
83
- * @param {Partial<StepNotification>} overrides Properties to override
84
- * a {@link StepNotification}
85
- * @returns {StepNotification} A {@link StepNotification} object
86
- */
87
- export declare const buildStepNotification: (overrides?: Partial<StepNotification>) => StepNotification;
88
- /**
89
- * Generates a list of StepNotification objects with random data.
90
- *
91
- * @since 0.5.15
92
- * @param {number} quantity The number of objects to be generated
93
- * @returns {StepNotification[]} An array of StepNotification objects,
94
- * see {@link StepNotification}
95
- */
96
- export declare const genStepNotifications: (quantity?: number | undefined) => StepNotification[];
97
- /**
98
- * Generates StepWorkflow object with random data.
99
- *
100
- * @since 0.5.15
101
- * @param {Partial<StepWorkflow>} overrides Properties to override
102
- * a {@link StepWorkflow}
103
- * @returns {StepWorkflow} A {@link StepWorkflow} object
104
- */
105
- export declare const buildStepWorkflow: (overrides?: Partial<StepWorkflow>) => StepWorkflow;
106
- /**
107
- * Generates a list of StepWorkflow objects with random data.
108
- *
109
- * @since 0.5.15
110
- * @param {number} quantity The number of objects to be generated
111
- * @returns {StepWorkflow[]} An array of StepWorkflow objects,
112
- * see {@link StepWorkflow}
113
- */
114
- export declare const genStepWorkflows: (quantity?: number | undefined) => StepWorkflow[];
115
- /**
116
- * Generates WebhookWorkflow object with random data.
117
- *
118
- * @since 0.5.15
119
- * @param {Partial<WebhookWorkflow>} overrides Properties to override
120
- * a {@link WebhookWorkflow}
121
- * @returns {WebhookWorkflow} A {@link WebhookWorkflow} object
122
- */
123
- export declare const buildWebhookWorkflow: (overrides?: Partial<WebhookWorkflow>) => WebhookWorkflow;
124
- /**
125
- * Generates a list of WebhookWorkflow objects with random data.
126
- *
127
- * @since 0.5.15
128
- * @param {number} quantity The number of objects to be generated
129
- * @returns {WebhookWorkflow[]} An array of WebhookWorkflow objects,
130
- * see {@link WebhookWorkflow}
131
- */
132
- export declare const genWebhookWorkflows: (quantity?: number | undefined) => WebhookWorkflow[];
133
- /**
134
- * Generates StepWorkflowAdditionalInfo object with random data.
135
- *
136
- * @since 0.5.15
137
- * @param {Partial<StepWorkflowAdditionalInfo>} overrides Properties to
138
- * override a {@link StepWorkflowAdditionalInfo}
139
- * @returns {StepWorkflowAdditionalInfo} A
140
- * {@link StepWorkflowAdditionalInfo} object
141
- */
142
- export declare const buildStepWorkflowAdditionalInfo: (overrides?: Partial<StepWorkflowAdditionalInfo>) => StepWorkflowAdditionalInfo;
143
- /**
144
- * Generates a list of StepWorkflowAdditionalInfo objects with random data.
145
- *
146
- * @since 0.5.15
147
- * @param {number} quantity The number of objects to be generated
148
- * @returns {StepWorkflowAdditionalInfo[]} An array of
149
- * StepWorkflowAdditionalInfo objects, see {@link StepWorkflowAdditionalInfo}
150
- */
151
- export declare const genStepWorkflowAdditionalInfos: (quantity?: number | undefined) => StepWorkflowAdditionalInfo[];
152
- /**
153
- * Generates StepWorkflowGroup object with random data.
154
- *
155
- * @since 0.5.15
156
- * @param {Partial<StepWorkflowGroup>} overrides Properties to override
157
- * a {@link StepWorkflowGroup}
158
- * @returns {StepWorkflowGroup} A {@link StepWorkflowGroup} object
159
- */
160
- export declare const buildStepWorkflowGroup: (overrides?: Partial<StepWorkflowGroup>) => StepWorkflowGroup;
161
- /**
162
- * Generates a list of StepWorkflowGroup objects with random data.
163
- *
164
- * @since 0.5.15
165
- * @param {number} quantity The number of objects to be generated
166
- * @returns {StepWorkflowGroup[]} An array of StepWorkflowGroup objects,
167
- * see {@link StepWorkflowGroup}
168
- */
169
- export declare const genStepWorkflowGroups: (quantity?: number | undefined) => StepWorkflowGroup[];
170
- /**
171
- * Generates TransitionWorkflow object with random data.
172
- *
173
- * @since 0.5.15
174
- * @param {Partial<TransitionWorkflow>} overrides Properties to override
175
- * a {@link TransitionWorkflow}
176
- * @returns {TransitionWorkflow} A {@link TransitionWorkflow} object
177
- */
178
- export declare const buildTransitionWorkflow: (overrides?: Partial<TransitionWorkflow>) => TransitionWorkflow;
179
- /**
180
- * Generates a list of TransitionWorkflow objects with random data.
181
- *
182
- * @since 0.5.15
183
- * @param {number} quantity The number of objects to be generated
184
- * @returns {TransitionWorkflow[]} An array of TransitionWorkflow objects,
185
- * see {@link TransitionWorkflow}
186
- */
187
- export declare const genTransitionWorkflows: (quantity?: number | undefined) => TransitionWorkflow[];