@easyedu/js-lsm-api 1.115.0 → 1.116.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.
Files changed (86) hide show
  1. package/.openapi-generator/FILES +24 -0
  2. package/README.md +21 -2
  3. package/dist/apis/IntegrationApi.d.ts +132 -0
  4. package/dist/apis/IntegrationApi.js +378 -0
  5. package/dist/esm/apis/IntegrationApi.d.ts +132 -0
  6. package/dist/esm/apis/IntegrationApi.js +378 -0
  7. package/dist/esm/models/GetZapierCourses.d.ts +51 -0
  8. package/dist/esm/models/GetZapierCourses.js +56 -0
  9. package/dist/esm/models/GetZapierShopifyCourseMappings.d.ts +33 -0
  10. package/dist/esm/models/GetZapierShopifyCourseMappings.js +44 -0
  11. package/dist/esm/models/GetZapierUsers.d.ts +33 -0
  12. package/dist/esm/models/GetZapierUsers.js +44 -0
  13. package/dist/esm/models/PostZapierEnrollment.d.ts +76 -0
  14. package/dist/esm/models/PostZapierEnrollment.js +64 -0
  15. package/dist/esm/models/PostZapierShopifyCourseMapping.d.ts +50 -0
  16. package/dist/esm/models/PostZapierShopifyCourseMapping.js +53 -0
  17. package/dist/esm/models/PostZapierShopifyEnrollment.d.ts +100 -0
  18. package/dist/esm/models/PostZapierShopifyEnrollment.js +82 -0
  19. package/dist/esm/models/PostZapierShopifyEnrollmentResponse.d.ts +47 -0
  20. package/dist/esm/models/PostZapierShopifyEnrollmentResponse.js +54 -0
  21. package/dist/esm/models/PostZapierUser.d.ts +44 -0
  22. package/dist/esm/models/PostZapierUser.js +51 -0
  23. package/dist/esm/models/ZapierCourse.d.ts +50 -0
  24. package/dist/esm/models/ZapierCourse.js +55 -0
  25. package/dist/esm/models/ZapierEnrollment.d.ts +74 -0
  26. package/dist/esm/models/ZapierEnrollment.js +69 -0
  27. package/dist/esm/models/ZapierShopifyCourseMapping.d.ts +69 -0
  28. package/dist/esm/models/ZapierShopifyCourseMapping.js +66 -0
  29. package/dist/esm/models/ZapierUser.d.ts +56 -0
  30. package/dist/esm/models/ZapierUser.js +59 -0
  31. package/dist/esm/models/index.d.ts +12 -0
  32. package/dist/esm/models/index.js +12 -0
  33. package/dist/models/GetZapierCourses.d.ts +51 -0
  34. package/dist/models/GetZapierCourses.js +63 -0
  35. package/dist/models/GetZapierShopifyCourseMappings.d.ts +33 -0
  36. package/dist/models/GetZapierShopifyCourseMappings.js +51 -0
  37. package/dist/models/GetZapierUsers.d.ts +33 -0
  38. package/dist/models/GetZapierUsers.js +51 -0
  39. package/dist/models/PostZapierEnrollment.d.ts +76 -0
  40. package/dist/models/PostZapierEnrollment.js +72 -0
  41. package/dist/models/PostZapierShopifyCourseMapping.d.ts +50 -0
  42. package/dist/models/PostZapierShopifyCourseMapping.js +60 -0
  43. package/dist/models/PostZapierShopifyEnrollment.d.ts +100 -0
  44. package/dist/models/PostZapierShopifyEnrollment.js +90 -0
  45. package/dist/models/PostZapierShopifyEnrollmentResponse.d.ts +47 -0
  46. package/dist/models/PostZapierShopifyEnrollmentResponse.js +61 -0
  47. package/dist/models/PostZapierUser.d.ts +44 -0
  48. package/dist/models/PostZapierUser.js +58 -0
  49. package/dist/models/ZapierCourse.d.ts +50 -0
  50. package/dist/models/ZapierCourse.js +62 -0
  51. package/dist/models/ZapierEnrollment.d.ts +74 -0
  52. package/dist/models/ZapierEnrollment.js +76 -0
  53. package/dist/models/ZapierShopifyCourseMapping.d.ts +69 -0
  54. package/dist/models/ZapierShopifyCourseMapping.js +73 -0
  55. package/dist/models/ZapierUser.d.ts +56 -0
  56. package/dist/models/ZapierUser.js +66 -0
  57. package/dist/models/index.d.ts +12 -0
  58. package/dist/models/index.js +12 -0
  59. package/docs/GetZapierCourses.md +40 -0
  60. package/docs/GetZapierShopifyCourseMappings.md +34 -0
  61. package/docs/GetZapierUsers.md +34 -0
  62. package/docs/IntegrationApi.md +536 -0
  63. package/docs/PostZapierEnrollment.md +46 -0
  64. package/docs/PostZapierShopifyCourseMapping.md +40 -0
  65. package/docs/PostZapierShopifyEnrollment.md +54 -0
  66. package/docs/PostZapierShopifyEnrollmentResponse.md +38 -0
  67. package/docs/PostZapierUser.md +38 -0
  68. package/docs/ZapierCourse.md +40 -0
  69. package/docs/ZapierEnrollment.md +48 -0
  70. package/docs/ZapierShopifyCourseMapping.md +46 -0
  71. package/docs/ZapierUser.md +42 -0
  72. package/package.json +1 -1
  73. package/src/apis/IntegrationApi.ts +579 -0
  74. package/src/models/GetZapierCourses.ts +101 -0
  75. package/src/models/GetZapierShopifyCourseMappings.ts +74 -0
  76. package/src/models/GetZapierUsers.ts +74 -0
  77. package/src/models/PostZapierEnrollment.ts +126 -0
  78. package/src/models/PostZapierShopifyCourseMapping.ts +92 -0
  79. package/src/models/PostZapierShopifyEnrollment.ts +163 -0
  80. package/src/models/PostZapierShopifyEnrollmentResponse.ts +106 -0
  81. package/src/models/PostZapierUser.ts +84 -0
  82. package/src/models/ZapierCourse.ts +93 -0
  83. package/src/models/ZapierEnrollment.ts +128 -0
  84. package/src/models/ZapierShopifyCourseMapping.ts +127 -0
  85. package/src/models/ZapierUser.ts +102 -0
  86. package/src/models/index.ts +12 -0
@@ -0,0 +1,38 @@
1
+
2
+ # PostZapierShopifyEnrollmentResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `enrollment` | [ZapierEnrollment](ZapierEnrollment.md)
10
+ `user` | [ZapierUser](ZapierUser.md)
11
+ `mapping` | [ZapierShopifyCourseMapping](ZapierShopifyCourseMapping.md)
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { PostZapierShopifyEnrollmentResponse } from '@easyedu/js-lsm-api'
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "enrollment": null,
21
+ "user": null,
22
+ "mapping": null,
23
+ } satisfies PostZapierShopifyEnrollmentResponse
24
+
25
+ console.log(example)
26
+
27
+ // Convert the instance to a JSON string
28
+ const exampleJSON: string = JSON.stringify(example)
29
+ console.log(exampleJSON)
30
+
31
+ // Parse the JSON string back to an object
32
+ const exampleParsed = JSON.parse(exampleJSON) as PostZapierShopifyEnrollmentResponse
33
+ console.log(exampleParsed)
34
+ ```
35
+
36
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,38 @@
1
+
2
+ # PostZapierUser
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `email` | string
10
+ `firstName` | string
11
+ `lastName` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { PostZapierUser } from '@easyedu/js-lsm-api'
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "email": null,
21
+ "firstName": null,
22
+ "lastName": null,
23
+ } satisfies PostZapierUser
24
+
25
+ console.log(example)
26
+
27
+ // Convert the instance to a JSON string
28
+ const exampleJSON: string = JSON.stringify(example)
29
+ console.log(exampleJSON)
30
+
31
+ // Parse the JSON string back to an object
32
+ const exampleParsed = JSON.parse(exampleJSON) as PostZapierUser
33
+ console.log(exampleParsed)
34
+ ```
35
+
36
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,40 @@
1
+
2
+ # ZapierCourse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `name` | string
11
+ `description` | string
12
+ `published` | boolean
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { ZapierCourse } from '@easyedu/js-lsm-api'
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "id": null,
22
+ "name": null,
23
+ "description": null,
24
+ "published": null,
25
+ } satisfies ZapierCourse
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as ZapierCourse
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
39
+
40
+
@@ -0,0 +1,48 @@
1
+
2
+ # ZapierEnrollment
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `courseId` | string
11
+ `userId` | string
12
+ `status` | string
13
+ `enrollmentDateStart` | number
14
+ `enrollmentDateEnd` | number
15
+ `created` | boolean
16
+ `idempotentReplay` | boolean
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import type { ZapierEnrollment } from '@easyedu/js-lsm-api'
22
+
23
+ // TODO: Update the object below with actual values
24
+ const example = {
25
+ "id": null,
26
+ "courseId": null,
27
+ "userId": null,
28
+ "status": null,
29
+ "enrollmentDateStart": null,
30
+ "enrollmentDateEnd": null,
31
+ "created": null,
32
+ "idempotentReplay": null,
33
+ } satisfies ZapierEnrollment
34
+
35
+ console.log(example)
36
+
37
+ // Convert the instance to a JSON string
38
+ const exampleJSON: string = JSON.stringify(example)
39
+ console.log(exampleJSON)
40
+
41
+ // Parse the JSON string back to an object
42
+ const exampleParsed = JSON.parse(exampleJSON) as ZapierEnrollment
43
+ console.log(exampleParsed)
44
+ ```
45
+
46
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
47
+
48
+
@@ -0,0 +1,46 @@
1
+
2
+ # ZapierShopifyCourseMapping
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `shopDomain` | string
11
+ `variantId` | string
12
+ `productId` | string
13
+ `course` | [ZapierCourse](ZapierCourse.md)
14
+ `createdAt` | number
15
+ `updatedAt` | number
16
+
17
+ ## Example
18
+
19
+ ```typescript
20
+ import type { ZapierShopifyCourseMapping } from '@easyedu/js-lsm-api'
21
+
22
+ // TODO: Update the object below with actual values
23
+ const example = {
24
+ "id": null,
25
+ "shopDomain": null,
26
+ "variantId": null,
27
+ "productId": null,
28
+ "course": null,
29
+ "createdAt": null,
30
+ "updatedAt": null,
31
+ } satisfies ZapierShopifyCourseMapping
32
+
33
+ console.log(example)
34
+
35
+ // Convert the instance to a JSON string
36
+ const exampleJSON: string = JSON.stringify(example)
37
+ console.log(exampleJSON)
38
+
39
+ // Parse the JSON string back to an object
40
+ const exampleParsed = JSON.parse(exampleJSON) as ZapierShopifyCourseMapping
41
+ console.log(exampleParsed)
42
+ ```
43
+
44
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
45
+
46
+
@@ -0,0 +1,42 @@
1
+
2
+ # ZapierUser
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `email` | string
11
+ `firstName` | string
12
+ `lastName` | string
13
+ `created` | boolean
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { ZapierUser } from '@easyedu/js-lsm-api'
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "id": null,
23
+ "email": null,
24
+ "firstName": null,
25
+ "lastName": null,
26
+ "created": null,
27
+ } satisfies ZapierUser
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as ZapierUser
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyedu/js-lsm-api",
3
- "version": "1.115.0",
3
+ "version": "1.116.0",
4
4
  "description": "OpenAPI client for @easyedu/js-lsm-api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {