@free-drivers-ed-california/types 0.0.207 → 0.0.209
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/dist/emails/endpoints/admin/create-email-template/create-email-template-request.interface.d.ts +1 -0
- package/dist/emails/endpoints/admin/create-email-template/create-email-template-request.interface.d.ts.map +1 -1
- package/dist/emails/endpoints/admin/update-email-template/update-email-template-request.interface.d.ts +1 -0
- package/dist/emails/endpoints/admin/update-email-template/update-email-template-request.interface.d.ts.map +1 -1
- package/dist/endpoints/admin-stripe-endpoints.enum.d.ts +10 -0
- package/dist/endpoints/admin-stripe-endpoints.enum.d.ts.map +1 -0
- package/dist/endpoints/admin-stripe-endpoints.enum.js +10 -0
- package/dist/endpoints/index.d.ts +2 -0
- package/dist/endpoints/index.d.ts.map +1 -1
- package/dist/endpoints/index.js +2 -0
- package/dist/endpoints/public-stripe-endpoints.enum.d.ts +6 -0
- package/dist/endpoints/public-stripe-endpoints.enum.d.ts.map +1 -0
- package/dist/endpoints/public-stripe-endpoints.enum.js +6 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-email-template-request.interface.d.ts","sourceRoot":"","sources":["../../../../../src/emails/endpoints/admin/create-email-template/create-email-template-request.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAE7C;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CAChB"}
|
|
1
|
+
{"version":3,"file":"create-email-template-request.interface.d.ts","sourceRoot":"","sources":["../../../../../src/emails/endpoints/admin/create-email-template/create-email-template-request.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAE7C;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CAChB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-email-template-request.interface.d.ts","sourceRoot":"","sources":["../../../../../src/emails/endpoints/admin/update-email-template/update-email-template-request.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAE7C;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"update-email-template-request.interface.d.ts","sourceRoot":"","sources":["../../../../../src/emails/endpoints/admin/update-email-template/update-email-template-request.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAE7C;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;CACpB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum AdminStripeEndpoints {
|
|
2
|
+
GET_TRANSACTIONS = "/admin/stripe/transactions",
|
|
3
|
+
UPDATE_PRODUCT = "/admin/stripe/update-product",
|
|
4
|
+
DELETE_PRODUCT = "/admin/stripe/delete-product",
|
|
5
|
+
CREATE_PRODUCT = "/admin/stripe/create-product",
|
|
6
|
+
UPDATE_PAYMENT_INTENT_METADATA = "/admin/stripe/payment-intent-metadata",
|
|
7
|
+
UPDATE_SUBSCRIPTION_METADATA = "/admin/stripe/subscription-metadata",
|
|
8
|
+
UPDATE_SUBSCRIPTION_CANCEL_DATE = "/admin/stripe/subscription-cancel-date"
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=admin-stripe-endpoints.enum.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"admin-stripe-endpoints.enum.d.ts","sourceRoot":"","sources":["../../src/endpoints/admin-stripe-endpoints.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,oBAAoB;IAC5B,gBAAgB,+BAA+B;IAC/C,cAAc,iCAAiC;IAC/C,cAAc,iCAAiC;IAC/C,cAAc,iCAAiC;IAC/C,8BAA8B,0CAA0C;IACxE,4BAA4B,wCAAwC;IACpE,+BAA+B,2CAA2C;CAC7E"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export var AdminStripeEndpoints;
|
|
2
|
+
(function (AdminStripeEndpoints) {
|
|
3
|
+
AdminStripeEndpoints["GET_TRANSACTIONS"] = "/admin/stripe/transactions";
|
|
4
|
+
AdminStripeEndpoints["UPDATE_PRODUCT"] = "/admin/stripe/update-product";
|
|
5
|
+
AdminStripeEndpoints["DELETE_PRODUCT"] = "/admin/stripe/delete-product";
|
|
6
|
+
AdminStripeEndpoints["CREATE_PRODUCT"] = "/admin/stripe/create-product";
|
|
7
|
+
AdminStripeEndpoints["UPDATE_PAYMENT_INTENT_METADATA"] = "/admin/stripe/payment-intent-metadata";
|
|
8
|
+
AdminStripeEndpoints["UPDATE_SUBSCRIPTION_METADATA"] = "/admin/stripe/subscription-metadata";
|
|
9
|
+
AdminStripeEndpoints["UPDATE_SUBSCRIPTION_CANCEL_DATE"] = "/admin/stripe/subscription-cancel-date";
|
|
10
|
+
})(AdminStripeEndpoints || (AdminStripeEndpoints = {}));
|
|
@@ -2,7 +2,9 @@ export * from './admin-user-endpoints.enum';
|
|
|
2
2
|
export * from './admin-student-endpoints.enum';
|
|
3
3
|
export * from './admin-curriculum-endpoints.enum';
|
|
4
4
|
export * from './admin-email-endpoints.enum';
|
|
5
|
+
export * from './admin-stripe-endpoints.enum';
|
|
5
6
|
export * from './student-endpoints.enum';
|
|
6
7
|
export * from './student-email-endpoints.enum';
|
|
7
8
|
export * from './public-endpoints.enum';
|
|
9
|
+
export * from './public-stripe-endpoints.enum';
|
|
8
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/endpoints/index.ts"],"names":[],"mappings":"AACA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/endpoints/index.ts"],"names":[],"mappings":"AACA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAG9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAG/C,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC"}
|
package/dist/endpoints/index.js
CHANGED
|
@@ -3,8 +3,10 @@ export * from './admin-user-endpoints.enum';
|
|
|
3
3
|
export * from './admin-student-endpoints.enum';
|
|
4
4
|
export * from './admin-curriculum-endpoints.enum';
|
|
5
5
|
export * from './admin-email-endpoints.enum';
|
|
6
|
+
export * from './admin-stripe-endpoints.enum';
|
|
6
7
|
// Student Endpoints
|
|
7
8
|
export * from './student-endpoints.enum';
|
|
8
9
|
export * from './student-email-endpoints.enum';
|
|
9
10
|
// Public Endpoints
|
|
10
11
|
export * from './public-endpoints.enum';
|
|
12
|
+
export * from './public-stripe-endpoints.enum';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public-stripe-endpoints.enum.d.ts","sourceRoot":"","sources":["../../src/endpoints/public-stripe-endpoints.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB;IAC7B,uBAAuB,6BAA6B;IACpD,WAAW,oBAAoB;IAC/B,qBAAqB,2BAA2B;CACnD"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var PublicStripeEndpoints;
|
|
2
|
+
(function (PublicStripeEndpoints) {
|
|
3
|
+
PublicStripeEndpoints["CREATE_CHECKOUT_SESSION"] = "/stripe/checkout-session";
|
|
4
|
+
PublicStripeEndpoints["GET_SESSION"] = "/stripe/session";
|
|
5
|
+
PublicStripeEndpoints["CREATE_PAYMENT_INTENT"] = "/stripe/payment-intent";
|
|
6
|
+
})(PublicStripeEndpoints || (PublicStripeEndpoints = {}));
|