@otr-app/shared-backend-generated-client 2.5.126 → 2.5.128

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 (40) hide show
  1. package/dist/angular/.openapi-generator/FILES +0 -9
  2. package/dist/angular/api/api.ts +1 -7
  3. package/dist/angular/api.module.ts +0 -3
  4. package/dist/angular/model/courtEntity.ts +1 -0
  5. package/dist/angular/model/models.ts +0 -6
  6. package/dist/otrBackendService.js +0 -110
  7. package/dist/otrBackendService.min.js +6 -6
  8. package/dist/typescript/api/api.d.ts +1 -7
  9. package/dist/typescript/api/api.js +1 -7
  10. package/dist/typescript/api.module.js +0 -3
  11. package/dist/typescript/model/CourtEntity.d.ts +1 -0
  12. package/dist/typescript/model/models.d.ts +0 -6
  13. package/dist/typescript/model/models.js +0 -6
  14. package/dist/typescript-fetch/apis/index.d.ts +0 -3
  15. package/dist/typescript-fetch/apis/index.js +0 -3
  16. package/dist/typescript-fetch/models/CourtEntity.d.ts +6 -0
  17. package/dist/typescript-fetch/models/CourtEntity.js +2 -0
  18. package/dist/typescript-fetch/models/index.d.ts +0 -6
  19. package/dist/typescript-fetch/models/index.js +0 -6
  20. package/dist/typescript-open-api/otr-backend.d.ts +2 -241
  21. package/dist/typescript-open-api/otr-backend.js +0 -9
  22. package/package.json +1 -1
  23. package/dist/typescript-fetch/apis/BlogWebhookControllerApi.d.ts +0 -29
  24. package/dist/typescript-fetch/apis/BlogWebhookControllerApi.js +0 -58
  25. package/dist/typescript-fetch/apis/CertificateControllerApi.d.ts +0 -37
  26. package/dist/typescript-fetch/apis/CertificateControllerApi.js +0 -69
  27. package/dist/typescript-fetch/apis/EmailSubscriptionControllerApi.d.ts +0 -29
  28. package/dist/typescript-fetch/apis/EmailSubscriptionControllerApi.js +0 -59
  29. package/dist/typescript-fetch/models/BlogDocument.d.ts +0 -40
  30. package/dist/typescript-fetch/models/BlogDocument.js +0 -41
  31. package/dist/typescript-fetch/models/BlogEvent.d.ts +0 -46
  32. package/dist/typescript-fetch/models/BlogEvent.js +0 -43
  33. package/dist/typescript-fetch/models/BlogMetadata.d.ts +0 -39
  34. package/dist/typescript-fetch/models/BlogMetadata.js +0 -40
  35. package/dist/typescript-fetch/models/SSLCertificateResponse.d.ts +0 -27
  36. package/dist/typescript-fetch/models/SSLCertificateResponse.js +0 -36
  37. package/dist/typescript-fetch/models/SubscribeRequest.d.ts +0 -28
  38. package/dist/typescript-fetch/models/SubscribeRequest.js +0 -37
  39. package/dist/typescript-fetch/models/SubscriberDomain.d.ts +0 -58
  40. package/dist/typescript-fetch/models/SubscriberDomain.js +0 -52
@@ -1,37 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * OffTheRecord Rest Service API - Devo
5
- * A service to handle your traffic tickets
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
- import { exists } from '../runtime';
15
- import { SubscriberDomainFromJSON, SubscriberDomainToJSON, } from './';
16
- export function SubscribeRequestFromJSON(json) {
17
- return SubscribeRequestFromJSONTyped(json, false);
18
- }
19
- export function SubscribeRequestFromJSONTyped(json, ignoreDiscriminator) {
20
- if ((json === undefined) || (json === null)) {
21
- return json;
22
- }
23
- return {
24
- 'subscriber': !exists(json, 'subscriber') ? undefined : SubscriberDomainFromJSON(json['subscriber']),
25
- };
26
- }
27
- export function SubscribeRequestToJSON(value) {
28
- if (value === undefined) {
29
- return undefined;
30
- }
31
- if (value === null) {
32
- return null;
33
- }
34
- return {
35
- 'subscriber': SubscriberDomainToJSON(value.subscriber),
36
- };
37
- }
@@ -1,58 +0,0 @@
1
- /**
2
- * OffTheRecord Rest Service API - Devo
3
- * A service to handle your traffic tickets
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- * @interface SubscriberDomain
16
- */
17
- export interface SubscriberDomain {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof SubscriberDomain
22
- */
23
- email?: string;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof SubscriberDomain
28
- */
29
- fullName?: string;
30
- /**
31
- *
32
- * @type {string}
33
- * @memberof SubscriberDomain
34
- */
35
- postalCode?: string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof SubscriberDomain
40
- */
41
- roleType?: string;
42
- /**
43
- *
44
- * @type {string}
45
- * @memberof SubscriberDomain
46
- */
47
- subscriptionType?: SubscriberDomainSubscriptionTypeEnum;
48
- }
49
- export declare function SubscriberDomainFromJSON(json: any): SubscriberDomain;
50
- export declare function SubscriberDomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriberDomain;
51
- export declare function SubscriberDomainToJSON(value?: SubscriberDomain | null): any;
52
- /**
53
- * @export
54
- * @enum {string}
55
- */
56
- export declare enum SubscriberDomainSubscriptionTypeEnum {
57
- WEBBROCHURELAUNCHNOTIFICATION = "WEB_BROCHURE_LAUNCH_NOTIFICATION"
58
- }
@@ -1,52 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * OffTheRecord Rest Service API - Devo
5
- * A service to handle your traffic tickets
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
- import { exists } from '../runtime';
15
- export function SubscriberDomainFromJSON(json) {
16
- return SubscriberDomainFromJSONTyped(json, false);
17
- }
18
- export function SubscriberDomainFromJSONTyped(json, ignoreDiscriminator) {
19
- if ((json === undefined) || (json === null)) {
20
- return json;
21
- }
22
- return {
23
- 'email': !exists(json, 'email') ? undefined : json['email'],
24
- 'fullName': !exists(json, 'fullName') ? undefined : json['fullName'],
25
- 'postalCode': !exists(json, 'postalCode') ? undefined : json['postalCode'],
26
- 'roleType': !exists(json, 'roleType') ? undefined : json['roleType'],
27
- 'subscriptionType': !exists(json, 'subscriptionType') ? undefined : json['subscriptionType'],
28
- };
29
- }
30
- export function SubscriberDomainToJSON(value) {
31
- if (value === undefined) {
32
- return undefined;
33
- }
34
- if (value === null) {
35
- return null;
36
- }
37
- return {
38
- 'email': value.email,
39
- 'fullName': value.fullName,
40
- 'postalCode': value.postalCode,
41
- 'roleType': value.roleType,
42
- 'subscriptionType': value.subscriptionType,
43
- };
44
- }
45
- /**
46
- * @export
47
- * @enum {string}
48
- */
49
- export var SubscriberDomainSubscriptionTypeEnum;
50
- (function (SubscriberDomainSubscriptionTypeEnum) {
51
- SubscriberDomainSubscriptionTypeEnum["WEBBROCHURELAUNCHNOTIFICATION"] = "WEB_BROCHURE_LAUNCH_NOTIFICATION";
52
- })(SubscriberDomainSubscriptionTypeEnum || (SubscriberDomainSubscriptionTypeEnum = {}));