@free-drivers-ed-california/types 0.0.208 → 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.
@@ -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;AAG7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAG/C,cAAc,yBAAyB,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"}
@@ -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,6 @@
1
+ export declare enum PublicStripeEndpoints {
2
+ CREATE_CHECKOUT_SESSION = "/stripe/checkout-session",
3
+ GET_SESSION = "/stripe/session",
4
+ CREATE_PAYMENT_INTENT = "/stripe/payment-intent"
5
+ }
6
+ //# sourceMappingURL=public-stripe-endpoints.enum.d.ts.map
@@ -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 = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@free-drivers-ed-california/types",
3
- "version": "0.0.208",
3
+ "version": "0.0.209",
4
4
  "private": false,
5
5
  "description": "Types and Interfaces for Free Drivers Ed California UI & API",
6
6
  "main": "dist/index.js",