{"version":3,"file":"distributionconfigurationService-7795d855.js","sources":["../../src/app/services/generated/distributionconfigurationService.ts"],"sourcesContent":["import Guid from \"@/app/types/common/guid\";\nimport { Instant, LocalDate, LocalTime } from \"@js-joda/core\";\nimport {ModelObject, BaseModelObject, ValidationRule} from \"@/app/services/modelObject\";\nimport ServiceBase from \"@/app/services/serviceBase\";\nimport converters from \"@/app/services/converters\"\n\n// Model Objects\n\nexport class DistributionConfiguration extends ModelObject {\n\n public version: number = 0;\n /**\n * Default stop minutes for new Outlets / Visits.\n * Not Negative\n */\n public defaultStopMinutes: number = 0;\n\n public constructor(jsonSerializedObject?: any) {\n super();\n if (jsonSerializedObject) {\n this.version = jsonSerializedObject.version;\n this.defaultStopMinutes = jsonSerializedObject.defaultStopMinutes;\n }\n\n }\n\n public toJsonSerializedObject(): any {\n const toRet = {} as any;\n toRet.version = this.version;\n toRet.defaultStopMinutes = this.defaultStopMinutes;\n return toRet;\n }\n\n public toProto(): any {\n return this.toJsonSerializedObject();\n }\n\n public toBinary(): Uint8Array {\n return new TextEncoder().encode(JSON.stringify(this.toJsonSerializedObject()));\n }\n\n public validationRules: ValidationRule = [\n {field: \"version\", rule: (v: any) => v == null || v >= -9223372036854775808 || \"Version is not greater than minimum allowed value: -9223372036854775808\"},\n {field: \"version\", rule: (v: any) => v == null || v <= 9223372036854775807 || \"Version is above maximum allowed value: 9223372036854775807\"},\n {field: \"defaultStopMinutes\", rule: (v: any) => v == null || v >= 0 || \"DefaultStopMinutes is not greater than minimum allowed value: 0\"},\n {field: \"defaultStopMinutes\", rule: (v: any) => v == null || v <= 2147483647 || \"DefaultStopMinutes is above maximum allowed value: 2147483647\"},\n ];\n}\n\n\nexport class GetDistributionConfigurationRequest extends ModelObject {\n\n public tenantId: Guid = Guid.createEmpty();\n\n public constructor(jsonSerializedObject?: any) {\n super();\n if (jsonSerializedObject) {\n this.tenantId = Guid.fromString(jsonSerializedObject.tenantId);\n }\n\n }\n\n public toJsonSerializedObject(): any {\n const toRet = {} as any;\n toRet.tenantId = this.tenantId.toString();\n return toRet;\n }\n\n public toProto(): any {\n return this.toJsonSerializedObject();\n }\n\n public toBinary(): Uint8Array {\n return new TextEncoder().encode(JSON.stringify(this.toJsonSerializedObject()));\n }\n\n public validationRules: ValidationRule = [\n {field: \"tenantId\", rule: (v: any) => !v.isEmpty() || \".TenantId cannot be empty\"},\n ];\n}\n\n\nexport class GetDistributionConfigurationResponse extends ModelObject {\n\n public distributionConfiguration: DistributionConfiguration = new DistributionConfiguration();\n\n public constructor(jsonSerializedObject?: any) {\n super();\n if (jsonSerializedObject) {\n this.distributionConfiguration = new DistributionConfiguration(jsonSerializedObject.distributionConfiguration);\n }\n\n }\n\n public toJsonSerializedObject(): any {\n const toRet = {} as any;\n toRet.distributionConfiguration = this.distributionConfiguration.toJsonSerializedObject();\n return toRet;\n }\n\n public toProto(): any {\n return this.toJsonSerializedObject();\n }\n\n public toBinary(): Uint8Array {\n return new TextEncoder().encode(JSON.stringify(this.toJsonSerializedObject()));\n }\n\n public validationRules: ValidationRule = [\n {field: \"distributionConfiguration\", rule: (v: any) => !!v || \"distributionConfiguration is required\"},\n {field: \"distributionConfiguration\", rule: (v: any) => v.validate()},\n ];\n}\n\n\nexport class UpdateDistributionConfigurationRequest extends ModelObject {\n\n public tenantId: Guid = Guid.createEmpty();\n private _defaultStopMinutes: number | null = null;\n public get defaultStopMinutes(): number | null { return this._defaultStopMinutes }\n public set defaultStopMinutes(value: number | null) {\n this._defaultStopMinutes = value === undefined ? null : value;\n }\n\n public constructor(jsonSerializedObject?: any) {\n super();\n if (jsonSerializedObject) {\n this.tenantId = Guid.fromString(jsonSerializedObject.tenantId);\n this.defaultStopMinutes = jsonSerializedObject.defaultStopMinutes == null ? null : jsonSerializedObject.defaultStopMinutes;\n }\n\n }\n\n public toJsonSerializedObject(): any {\n const toRet = {} as any;\n toRet.tenantId = this.tenantId.toString();\n toRet.defaultStopMinutes = this.defaultStopMinutes == null ? null : this.defaultStopMinutes;\n return toRet;\n }\n\n public toProto(): any {\n return this.toJsonSerializedObject();\n }\n\n public toBinary(): Uint8Array {\n return new TextEncoder().encode(JSON.stringify(this.toJsonSerializedObject()));\n }\n\n public validationRules: ValidationRule = [\n {field: \"tenantId\", rule: (v: any) => !v.isEmpty() || \".TenantId cannot be empty\"},\n {field: \"defaultStopMinutes\", rule: (v: any) => v == null || v >= 0 || \"DefaultStopMinutes is not greater than minimum allowed value: 0\"},\n {field: \"defaultStopMinutes\", rule: (v: any) => v == null || v <= 2147483647 || \"DefaultStopMinutes is above maximum allowed value: 2147483647\"},\n ];\n}\n\n\nexport class DistributionConfigurationService extends ServiceBase {\n\n public async getDistributionConfiguration(tenantId: Guid, opts?: {requestTimeoutMs?: number, sessionToken?: string}): Promise {\n const req = new GetDistributionConfigurationRequest();\n req.tenantId = tenantId;\n const extractor = (response:any) => new GetDistributionConfigurationResponse(response).distributionConfiguration;\n return this.makeJsonRequest(\"distributionConfiguration/v1/getDistributionConfiguration\", req.toJsonSerializedObject(), extractor, opts);\n };\n\n public async updateDistributionConfiguration(tenantId: Guid, defaultStopMinutes: number | null, opts?: {requestTimeoutMs?: number, sessionToken?: string}): Promise {\n const req = new UpdateDistributionConfigurationRequest();\n req.tenantId = tenantId;\n req.defaultStopMinutes = defaultStopMinutes;\n const extractor = null;\n return this.makeJsonRequest(\"distributionConfiguration/v1/updateDistributionConfiguration\", req.toJsonSerializedObject(), extractor, opts);\n };\n}\n\nexport const distributionConfigurationService = new DistributionConfigurationService();"],"names":[],"mappings":"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"}