@boostengine/collections 1.0.0 → 1.1.1
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/README.md +63 -83
- package/bin/cli.cjs +49 -0
- package/collections/cashfree.collection.json +651 -0
- package/collections/delhivery.collection.json +270 -0
- package/collections/easyecom.collection.json +84 -82
- package/collections/paytm.collection.json +161 -0
- package/collections/phonepe.collection.json +359 -0
- package/collections/razorpay.collection.json +527 -90
- package/collections/shiprocket.collection.json +490 -0
- package/collections/shopify.collection.json +351 -0
- package/collections/stripe.collection.json +322 -0
- package/dist/index.cjs +602 -66
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +16 -2
- package/dist/index.d.ts +16 -2
- package/dist/index.mjs +602 -66
- package/dist/index.mjs.map +1 -1
- package/environments/cashfree.env.json +67 -0
- package/environments/delhivery.env.json +31 -0
- package/environments/paytm.env.json +49 -0
- package/environments/phonepe.env.json +85 -0
- package/environments/razorpay.env.json +12 -0
- package/environments/shiprocket.env.json +61 -0
- package/environments/shopify.env.json +31 -0
- package/environments/stripe.env.json +31 -0
- package/package.json +22 -3
package/dist/index.d.mts
CHANGED
|
@@ -66,7 +66,7 @@ interface PostmanEnvironment {
|
|
|
66
66
|
values: PostmanEnvironmentVariable[];
|
|
67
67
|
_postman_variable_scope: string;
|
|
68
68
|
}
|
|
69
|
-
type CollectionName = 'razorpay' | 'easyecom';
|
|
69
|
+
type CollectionName = 'razorpay' | 'cashfree' | 'phonepe' | 'paytm' | 'stripe' | 'easyecom' | 'shiprocket' | 'delhivery' | 'shopify';
|
|
70
70
|
interface CollectionSummary {
|
|
71
71
|
id: string;
|
|
72
72
|
name: string;
|
|
@@ -77,9 +77,23 @@ interface CollectionSummary {
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
declare const razorpayCollection: PostmanCollection;
|
|
80
|
+
declare const cashfreeCollection: PostmanCollection;
|
|
81
|
+
declare const phonepeCollection: PostmanCollection;
|
|
82
|
+
declare const paytmCollection: PostmanCollection;
|
|
83
|
+
declare const stripeCollection: PostmanCollection;
|
|
80
84
|
declare const easyecomCollection: PostmanCollection;
|
|
85
|
+
declare const shiprocketCollection: PostmanCollection;
|
|
86
|
+
declare const delhiveryCollection: PostmanCollection;
|
|
87
|
+
declare const shopifyCollection: PostmanCollection;
|
|
81
88
|
declare const razorpayEnvironment: PostmanEnvironment;
|
|
89
|
+
declare const cashfreeEnvironment: PostmanEnvironment;
|
|
90
|
+
declare const phonepeEnvironment: PostmanEnvironment;
|
|
91
|
+
declare const paytmEnvironment: PostmanEnvironment;
|
|
92
|
+
declare const stripeEnvironment: PostmanEnvironment;
|
|
82
93
|
declare const easyecomEnvironment: PostmanEnvironment;
|
|
94
|
+
declare const shiprocketEnvironment: PostmanEnvironment;
|
|
95
|
+
declare const delhiveryEnvironment: PostmanEnvironment;
|
|
96
|
+
declare const shopifyEnvironment: PostmanEnvironment;
|
|
83
97
|
/**
|
|
84
98
|
* List all available collections with endpoint counts and folders.
|
|
85
99
|
*/
|
|
@@ -97,4 +111,4 @@ declare function getEnvironment(name: CollectionName): PostmanEnvironment;
|
|
|
97
111
|
*/
|
|
98
112
|
declare function exportToDirectory(name: CollectionName | 'all', targetDir?: string): string[];
|
|
99
113
|
|
|
100
|
-
export { type CollectionName, type CollectionSummary, type PostmanAuth, type PostmanCollection, type PostmanEnvironment, type PostmanEnvironmentVariable, type PostmanInfo, type PostmanItem, type PostmanRequest, easyecomCollection, easyecomEnvironment, exportToDirectory, getCollection, getEnvironment, listCollections, razorpayCollection, razorpayEnvironment };
|
|
114
|
+
export { type CollectionName, type CollectionSummary, type PostmanAuth, type PostmanCollection, type PostmanEnvironment, type PostmanEnvironmentVariable, type PostmanInfo, type PostmanItem, type PostmanRequest, cashfreeCollection, cashfreeEnvironment, delhiveryCollection, delhiveryEnvironment, easyecomCollection, easyecomEnvironment, exportToDirectory, getCollection, getEnvironment, listCollections, paytmCollection, paytmEnvironment, phonepeCollection, phonepeEnvironment, razorpayCollection, razorpayEnvironment, shiprocketCollection, shiprocketEnvironment, shopifyCollection, shopifyEnvironment, stripeCollection, stripeEnvironment };
|
package/dist/index.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ interface PostmanEnvironment {
|
|
|
66
66
|
values: PostmanEnvironmentVariable[];
|
|
67
67
|
_postman_variable_scope: string;
|
|
68
68
|
}
|
|
69
|
-
type CollectionName = 'razorpay' | 'easyecom';
|
|
69
|
+
type CollectionName = 'razorpay' | 'cashfree' | 'phonepe' | 'paytm' | 'stripe' | 'easyecom' | 'shiprocket' | 'delhivery' | 'shopify';
|
|
70
70
|
interface CollectionSummary {
|
|
71
71
|
id: string;
|
|
72
72
|
name: string;
|
|
@@ -77,9 +77,23 @@ interface CollectionSummary {
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
declare const razorpayCollection: PostmanCollection;
|
|
80
|
+
declare const cashfreeCollection: PostmanCollection;
|
|
81
|
+
declare const phonepeCollection: PostmanCollection;
|
|
82
|
+
declare const paytmCollection: PostmanCollection;
|
|
83
|
+
declare const stripeCollection: PostmanCollection;
|
|
80
84
|
declare const easyecomCollection: PostmanCollection;
|
|
85
|
+
declare const shiprocketCollection: PostmanCollection;
|
|
86
|
+
declare const delhiveryCollection: PostmanCollection;
|
|
87
|
+
declare const shopifyCollection: PostmanCollection;
|
|
81
88
|
declare const razorpayEnvironment: PostmanEnvironment;
|
|
89
|
+
declare const cashfreeEnvironment: PostmanEnvironment;
|
|
90
|
+
declare const phonepeEnvironment: PostmanEnvironment;
|
|
91
|
+
declare const paytmEnvironment: PostmanEnvironment;
|
|
92
|
+
declare const stripeEnvironment: PostmanEnvironment;
|
|
82
93
|
declare const easyecomEnvironment: PostmanEnvironment;
|
|
94
|
+
declare const shiprocketEnvironment: PostmanEnvironment;
|
|
95
|
+
declare const delhiveryEnvironment: PostmanEnvironment;
|
|
96
|
+
declare const shopifyEnvironment: PostmanEnvironment;
|
|
83
97
|
/**
|
|
84
98
|
* List all available collections with endpoint counts and folders.
|
|
85
99
|
*/
|
|
@@ -97,4 +111,4 @@ declare function getEnvironment(name: CollectionName): PostmanEnvironment;
|
|
|
97
111
|
*/
|
|
98
112
|
declare function exportToDirectory(name: CollectionName | 'all', targetDir?: string): string[];
|
|
99
113
|
|
|
100
|
-
export { type CollectionName, type CollectionSummary, type PostmanAuth, type PostmanCollection, type PostmanEnvironment, type PostmanEnvironmentVariable, type PostmanInfo, type PostmanItem, type PostmanRequest, easyecomCollection, easyecomEnvironment, exportToDirectory, getCollection, getEnvironment, listCollections, razorpayCollection, razorpayEnvironment };
|
|
114
|
+
export { type CollectionName, type CollectionSummary, type PostmanAuth, type PostmanCollection, type PostmanEnvironment, type PostmanEnvironmentVariable, type PostmanInfo, type PostmanItem, type PostmanRequest, cashfreeCollection, cashfreeEnvironment, delhiveryCollection, delhiveryEnvironment, easyecomCollection, easyecomEnvironment, exportToDirectory, getCollection, getEnvironment, listCollections, paytmCollection, paytmEnvironment, phonepeCollection, phonepeEnvironment, razorpayCollection, razorpayEnvironment, shiprocketCollection, shiprocketEnvironment, shopifyCollection, shopifyEnvironment, stripeCollection, stripeEnvironment };
|